depot/third_party/nixpkgs/pkgs/development/python-modules/deluge-client/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

22 lines
577 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "deluge-client";
version = "1.9.0";
format = "setuptools";
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 ];
};
}