depot/third_party/nixpkgs/pkgs/development/python-modules/deluge-client/default.nix
Default email 2ce89355c3 Project import generated by Copybara.
GitOrigin-RevId: 22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1
2020-06-15 17:56:04 +02:00

21 lines
562 B
Nix

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