blob: ae9d5fa9830405cd32862dd4094493b69d0a139c (
plain) (
blame)
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
43
44
45
46
47
48
49
|
{ lib
, buildPythonPackage
, cachetools
, fetchFromGitHub
, paho-mqtt
, pythonOlder
, pytz
, requests
, requests-oauthlib
, schedule
}:
buildPythonPackage rec {
pname = "pysmappee";
version = "0.2.29";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "smappee";
repo = pname;
rev = version;
hash = "sha256-Ffi55FZsZUKDcS4qV46NpRK3VP6axzrL2BO+hYW7J9E=";
};
propagatedBuildInputs = [
cachetools
paho-mqtt
pytz
requests
requests-oauthlib
schedule
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"pysmappee"
];
meta = with lib; {
description = "Python Library for the Smappee dev API";
homepage = "https://github.com/smappee/pysmappee";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
|