1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "deluge-client";
5 version = "1.9.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0d2f12108a147d44590c8df63997fcb32f8b2fbc18f8cbb221f0136e2e372b85";
10 };
11
12 # it will try to connect to a running instance
13 doCheck = false;
14
15 meta = with 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}