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