nixpkgs/pkgs/development/python-modules/deluge-client/default.nix

22 lines
562 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "deluge-client";
2019-12-19 19:31:09 +00:00
version = "1.8.0";
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:09 +00:00
sha256 = "4eac169b4b08008cacf4e5e26e82302a7ccd43c07846d1a1228f3e271a128de2";
};
# 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 ];
};
}