Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
944 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
fetchFromGitHub,
buildPythonPackage,
# build-system
poetry-core,
# dependencies
beautifulsoup4,
httpx,
pbkdf2,
pillow,
pyaes,
rsa,
# test dependencies
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "audible";
version = "0.10.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mkb79";
repo = "Audible";
tag = "v${version}";
hash = "sha256-ILGhjuPIxpRxu/dVDmz531FUgMWosk4P+onPJltuPIs=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
pillow
beautifulsoup4
httpx
pbkdf2
pyaes
rsa
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "audible" ];
meta = with lib; {
description = "A(Sync) Interface for internal Audible API written in pure Python";
license = licenses.agpl3Only;
homepage = "https://github.com/mkb79/Audible";
maintainers = with maintainers; [ jvanbruegge ];
};
}