blob: 4e5f55c87da3ff598f5a200d600f90d6be013a01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "deluge-client";
version = "1.10.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-OIGu48Tgyp3YpWtxAEe4N+HQh6g+QhY2oHR3H5Kp8bU=";
};
nativeBuildInputs = [ setuptools ];
# it will try to connect to a running instance
doCheck = false;
pythonImportsCheck = [ "deluge_client" ];
meta = {
description = "Lightweight pure-python rpc client for deluge";
homepage = "https://github.com/JohnDoee/deluge-client";
changelog = "https://github.com/JohnDoee/deluge-client/blob/${version}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ peterhoeg ];
};
}
|