blob: 7e916a83943238218d35f84b6f706cbf52a83336 (
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
|
{
aiofiles,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
setuptools,
}:
buildPythonPackage rec {
pname = "compit-inext-api";
version = "0.3.4";
pyproject = true;
src = fetchFromGitHub {
owner = "Przemko92";
repo = "compit-inext-api";
tag = version;
hash = "sha256-J3V7ahETbCTJW/6jYvF9BbuIffVvbMH329nO1bmVKEw=";
};
build-system = [ setuptools ];
dependencies = [
aiofiles
aiohttp
];
pythonImportsCheck = [ "compit_inext_api" ];
# upstream has no tests
doCheck = false;
meta = {
description = "Python client for the Compit iNext API";
homepage = "https://github.com/Przemko92/compit-inext-api";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.dotlambda ];
};
}
|