Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 548 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "deluge-client"; 5 version = "1.7.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1ragmpihjr9p6n27hw7gy83qyc68csqpn18m9kvwsby1vi7mgdy8"; 10 }; 11 12 # it will try to connect to a running instance 13 doCheck = false; 14 15 meta = with stdenv.lib; { 16 description = "Lightweight pure-python rpc client for deluge"; 17 homepage = https://github.com/JohnDoee/deluge-client; 18 license = licenses.mit; 19 maintainers = with maintainers; [ peterhoeg ]; 20 }; 21}