blob: 3c407734cbeceb1867b5fe38c1bc3078f9e8288f (
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
41
42
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
requests,
requests-mock,
}:
buildPythonPackage rec {
pname = "hydrawiser";
version = "0.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "ptcryan";
repo = "hydrawiser";
rev = "v${version}";
sha256 = "161hazlpvd71xcl2ja86560wm5lnrjv210ki3ji37l6c6gwmhjdj";
};
propagatedBuildInputs = [ requests ];
nativeCheckInputs = [
pytest-asyncio
pytest-cov-stub
pytestCheckHook
requests
requests-mock
];
pythonImportsCheck = [ "hydrawiser" ];
meta = {
description = "Python library for Hydrawise API";
homepage = "https://github.com/ptcryan/hydrawiser";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|