blob: 9202bedc1c568799dc707411fc5a7d40dc6009e2 (
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
|
{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "kaiterra-async-client";
version = "1.1.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Wap+yJaIIwPfOUtbVijr85BU3F/JIN2p7nRWW3tsPP8=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# PyPI tarball doesn't include tests
doCheck = false;
pythonImportsCheck = [ "kaiterra_async_client" ];
meta = {
description = "Async Python client for Kaiterra API";
homepage = "https://github.com/Michsior14/python-kaiterra-async-client";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
|