python3Packages.wavinsentio: init at 0.3.0
This commit is contained in:
parent
3cabe0c3da
commit
eea46bee36
2 changed files with 39 additions and 0 deletions
37
pkgs/development/python-modules/wavinsentio/default.nix
Normal file
37
pkgs/development/python-modules/wavinsentio/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "wavinsentio";
|
||||
version = "0.3.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-3mzK+YBRhLDqcEJDyMK43Le6eCH3B89unXpuu8nIe1g=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"wavinsentio"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module to interact with the Wavin Sentio underfloor heating system";
|
||||
homepage = "https://github.com/djerik/wavinsentio";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -9970,6 +9970,8 @@ in {
|
|||
|
||||
wavefile = callPackage ../development/python-modules/wavefile { };
|
||||
|
||||
wavinsentio = callPackage ../development/python-modules/wavinsentio { };
|
||||
|
||||
wazeroutecalculator = callPackage ../development/python-modules/wazeroutecalculator { };
|
||||
|
||||
wcmatch = callPackage ../development/python-modules/wcmatch { };
|
||||
|
|
Loading…
Reference in a new issue