blob: 472f08d44738d5d2e1297368f593e74b852df693 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
requests,
}:
buildPythonPackage rec {
pname = "hydrus-api";
version = "5.1.1";
pyproject = true;
src = fetchPypi {
pname = "hydrus_api";
inherit version;
hash = "sha256-oA3DbdX+MRZiInCKXurBdKlUFQ4jeU+jHr9NxMEHQmI=";
};
build-system = [ poetry-core ];
dependencies = [ requests ];
pythonImportsCheck = [ "hydrus_api" ];
# There are no unit tests
doCheck = false;
meta = {
description = "Python module implementing the Hydrus API";
homepage = "https://gitlab.com/cryzed/hydrus-api";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ dandellion ];
};
}
|