1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 setuptools,
6 aiohttp,
7}:
8
9buildPythonPackage rec {
10 pname = "pypoint";
11 version = "3.0.1";
12 pyproject = true;
13
14 src = fetchFromGitHub {
15 owner = "fredrike";
16 repo = "pypoint";
17 tag = "v${version}";
18 hash = "sha256-9z9VcY42uHIksIvDU1Vz+kvXNmrCu08fGB/waQahmyg=";
19 };
20
21 build-system = [ setuptools ];
22
23 dependencies = [ aiohttp ];
24
25 # upstream has no tests
26 doCheck = false;
27
28 pythonImportsCheck = [ "pypoint" ];
29
30 meta = with lib; {
31 description = "Python module for communicating with Minut Point";
32 homepage = "https://github.com/fredrike/pypoint";
33 license = licenses.mit;
34 maintainers = with maintainers; [ dotlambda ];
35 };
36}