blob: f37b6a88447e6271dff0cc4bfd5242137363d961 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
aiohttp,
}:
buildPythonPackage rec {
pname = "pyfreedompro";
version = "1.1.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "92812070a0c74761fa0c8cac98ddbe0bca781c8de80e2b08dbd04492e831c172";
};
propagatedBuildInputs = [ aiohttp ];
# upstream has no tests
doCheck = false;
pythonImportsCheck = [ "aiohttp" ];
meta = {
description = "Python library for Freedompro API";
homepage = "https://github.com/stefano055415/pyfreedompro";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|