blob: 59edbf93e407805a1a193a2f78c076a4dddb27f8 (
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
36
37
38
39
40
|
{
lib,
aiohttp,
backoff,
buildPythonPackage,
fetchPypi,
importlib-metadata,
poetry-core,
}:
buildPythonPackage rec {
pname = "pypoolstation";
version = "0.5.8";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-GIRx66esht82tKBJDhCDrwPkxsdBPi1w9tSQ7itF0qQ=";
};
build-system = [ poetry-core ];
dependencies = [
aiohttp
backoff
importlib-metadata
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pypoolstation" ];
meta = {
description = "Python library to interact the the Poolstation platform";
homepage = "https://github.com/cibernox/PyPoolstation";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|