mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 04:24:28 +03:00
pythonPackages.deluge-client: init at 1.2.0
This commit is contained in:
parent
9c64494c82
commit
0bb55edb3a
21
pkgs/development/python-modules/deluge-client/default.nix
Normal file
21
pkgs/development/python-modules/deluge-client/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "deluge-client";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "048zfidv08sr4hivdd3xxf1pywhqbnszj5qcn51h2f4y1588fhpf";
|
||||
};
|
||||
|
||||
# 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 ];
|
||||
};
|
||||
}
|
@ -624,6 +624,7 @@ in {
|
||||
gui = false;
|
||||
};
|
||||
|
||||
deluge-client = callPackage ../development/python-modules/deluge-client { };
|
||||
|
||||
arrow = callPackage ../development/python-modules/arrow { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user