mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
6349ef157f
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-deluge-client/versions
22 lines
548 B
Nix
22 lines
548 B
Nix
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "deluge-client";
|
|
version = "1.7.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1ragmpihjr9p6n27hw7gy83qyc68csqpn18m9kvwsby1vi7mgdy8";
|
|
};
|
|
|
|
# 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 ];
|
|
};
|
|
}
|