mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
0215034f25
when they already rely on SRI hashes.
32 lines
808 B
Nix
32 lines
808 B
Nix
{ lib, fetchFromGitHub, buildPythonPackage, beautifulsoup4, httpx, pbkdf2, pillow, pyaes, rsa }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "audible";
|
|
version = "0.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mkb79";
|
|
repo = "Audible";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-SIEDBuMCC/Hap2mGVbKEFic96ClN369SEsV06Sg+poY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ beautifulsoup4 httpx pbkdf2 pillow pyaes rsa ];
|
|
|
|
postPatch = ''
|
|
sed -i "s/httpx.*/httpx',/" setup.py
|
|
'';
|
|
|
|
# has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "audible"];
|
|
|
|
meta = with lib; {
|
|
description = "A(Sync) Interface for internal Audible API written in pure Python";
|
|
license = licenses.agpl3;
|
|
homepage = "https://github.com/mkb79/Audible";
|
|
maintainers = with maintainers; [ jvanbruegge ];
|
|
};
|
|
}
|