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