biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / hydrus-api / default.nix
blob9d62af64cea775713239210ec955b83f4fca3e02
2   lib,
3   buildPythonPackage,
4   pythonOlder,
5   fetchPypi,
6   poetry-core,
7   requests,
8 }:
10 buildPythonPackage rec {
11   pname = "hydrus-api";
12   version = "5.0.1";
13   pyproject = true;
15   disabled = pythonOlder "3.9";
17   src = fetchPypi {
18     pname = "hydrus_api";
19     inherit version;
20     hash = "sha256-3Roeab9/woGF/aZYm9nbqrcyYN8CKA1k66cTRxx6jM4=";
21   };
23   build-system = [ poetry-core ];
25   dependencies = [ requests ];
27   pythonImportsCheck = [ "hydrus_api" ];
29   # There are no unit tests
30   doCheck = false;
32   meta = with lib; {
33     description = "Python module implementing the Hydrus API";
34     homepage = "https://gitlab.com/cryzed/hydrus-api";
35     license = licenses.agpl3Plus;
36     maintainers = with maintainers; [ dandellion ];
37   };