summary refs log blame commit diff
path: root/pkgs/development/python-modules/deluge-client/default.nix
blob: a2a986828b5cb3b74565bd013686da86dc4ef569 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                          
                    


                          
                                                                                











                                                                  
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "deluge-client";
  version = "1.8.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4eac169b4b08008cacf4e5e26e82302a7ccd43c07846d1a1228f3e271a128de2";
  };

  # 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 ];
  };
}