2018-02-28 01:42:54 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "deluge-client";
|
2019-05-22 15:31:42 +00:00
|
|
|
version = "1.7.1";
|
2018-02-28 01:42:54 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-22 15:31:42 +00:00
|
|
|
sha256 = "1ragmpihjr9p6n27hw7gy83qyc68csqpn18m9kvwsby1vi7mgdy8";
|
2018-02-28 01:42:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# it will try to connect to a running instance
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Lightweight pure-python rpc client for deluge";
|
|
|
|
homepage = https://github.com/JohnDoee/deluge-client;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
};
|
|
|
|
}
|