9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, python-dotenv
|
|
, pytz
|
|
, requests
|
|
, typing-extensions
|
|
, yarl
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "transmission-rpc";
|
|
version = "4.3.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Trim21";
|
|
repo = "transmission-rpc";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-kcrPUBpx8puhG4de55tDGDmOnJPAOZzr+zC5gRd8b0s=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
python-dotenv
|
|
pytz
|
|
pytestCheckHook
|
|
yarl
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"transmission_rpc"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests require a running Transmission instance
|
|
"test_real"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python module that implements the Transmission bittorent client RPC protocol";
|
|
homepage = "https://github.com/Trim21/transmission-rpc";
|
|
changelog = "https://github.com/trim21/transmission-rpc/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ eyjhb ];
|
|
};
|
|
}
|