My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/deluge-client/default.nix

21 lines
552 B

{ lib, 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 lib; {
description = "Lightweight pure-python rpc client for deluge";
homepage = "https://github.com/JohnDoee/deluge-client";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
};
}