python3Packages.pysmappee: init at 0.2.17
This commit is contained in:
parent
b1efbc6aa3
commit
7689b33b50
42
pkgs/development/python-modules/pysmappee/default.nix
Normal file
42
pkgs/development/python-modules/pysmappee/default.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, cachetools
|
||||
, paho-mqtt
|
||||
, pytz
|
||||
, requests
|
||||
, requests_oauthlib
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pysmappee";
|
||||
version = "0.2.17";
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "smappee";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "00274fbclj5kmwxi2bfx4913r4l0y8qvkfcc9d7ryalvf8jq24k6";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cachetools
|
||||
paho-mqtt
|
||||
pytz
|
||||
requests
|
||||
requests_oauthlib
|
||||
];
|
||||
|
||||
# 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 ];
|
||||
};
|
||||
}
|
@ -6011,6 +6011,8 @@ in {
|
||||
|
||||
pysma = callPackage ../development/python-modules/pysma { };
|
||||
|
||||
pysmappee = callPackage ../development/python-modules/pysmappee { };
|
||||
|
||||
pysmb = callPackage ../development/python-modules/pysmb { };
|
||||
|
||||
pysmbc = callPackage ../development/python-modules/pysmbc { inherit (pkgs) pkg-config; };
|
||||
|
Loading…
Reference in New Issue
Block a user