{ stdenv, buildPythonPackage, fetchPypi }: buildPythonPackage rec { pname = "deluge-client"; version = "1.7.0"; src = fetchPypi { inherit pname version; sha256 = "7c2bb6baa3183f039125fc490f47f8c6699312c3e69fcada89e9e70f63c6e092"; }; # 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 ]; }; }