python3Packages.hydrus-api: init at 4.0.0

This commit is contained in:
Daniel Olsen
2022-10-28 22:57:57 +02:00
parent cfd2641067
commit 77dec2d67b
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "hydrus-api";
version = "4.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-4by2TlZJIKElGgaof1w555ik2hUNbg16YekSWwICGmg=";
};
disabled = pythonOlder "3.9";
propagatedBuildInputs = [
requests
];
pythonImportsCheck = [ "hydrus_api" ];
# There are no unit tests
doCheck = false;
meta = with lib; {
description = "Python module implementing the Hydrus API";
homepage = "https://gitlab.com/cryzed/hydrus-api";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ dandellion ];
};
}
+2
View File
@@ -4309,6 +4309,8 @@ self: super: with self; {
hydrawiser = callPackage ../development/python-modules/hydrawiser { };
hydrus-api = callPackage ../development/python-modules/hydrus-api { };
hypchat = callPackage ../development/python-modules/hypchat { };
hypercorn = callPackage ../development/python-modules/hypercorn { };