1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "deluge-client";
5 version = "1.7.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "7c2bb6baa3183f039125fc490f47f8c6699312c3e69fcada89e9e70f63c6e092";
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}