Merge pull request #177412 from fabaff/ultraheat-api
python310Packages.ultraheat-api: init at 0.4.0
This commit is contained in:
commit
ff3d295d9f
2 changed files with 40 additions and 0 deletions
38
pkgs/development/python-modules/ultraheat-api/default.nix
Normal file
38
pkgs/development/python-modules/ultraheat-api/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pyserial
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ultraheat-api";
|
||||
version = "0.4.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "ultraheat_api";
|
||||
inherit version;
|
||||
hash = "sha256-J0mQolWdXatIG/ORTBNyo6HrAfydvYqXK7LxInQWcX0=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pyserial
|
||||
];
|
||||
|
||||
# Source is not tagged, only PyPI releases
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"ultraheat_api"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module for working with data from Landis+Gyr Ultraheat heat meter unit";
|
||||
homepage = "https://github.com/vpathuis/uh50";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -10814,6 +10814,8 @@ in {
|
|||
|
||||
ukrainealarm = callPackage ../development/python-modules/ukrainealarm { };
|
||||
|
||||
ultraheat-api = callPackage ../development/python-modules/ultraheat-api { };
|
||||
|
||||
umalqurra = callPackage ../development/python-modules/umalqurra { };
|
||||
|
||||
umap-learn = callPackage ../development/python-modules/umap-learn { };
|
||||
|
|
Loading…
Reference in a new issue