aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/deluge-client/default.nix
blob: 8a2bdee1d922ea9658da7b33c9464a4e751714fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildPythonPackage, fetchPypi }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "0d2f12108a147d44590c8df63997fcb32f8b2fbc18f8cbb221f0136e2e372b85";
  };

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