blob: 096feab08a2b02ba2bd69d9d51b26fb65155dd27 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
aiohttp,
}:
buildPythonPackage rec {
pname = "pypoint";
version = "3.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "fredrike";
repo = "pypoint";
tag = "v${version}";
hash = "sha256-9z9VcY42uHIksIvDU1Vz+kvXNmrCu08fGB/waQahmyg=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# upstream has no tests
doCheck = false;
pythonImportsCheck = [ "pypoint" ];
meta = {
description = "Python module for communicating with Minut Point";
homepage = "https://github.com/fredrike/pypoint";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|