Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 21 lines 548 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "deluge-client"; 5 version = "1.2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "048zfidv08sr4hivdd3xxf1pywhqbnszj5qcn51h2f4y1588fhpf"; 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}