Merge pull request #177412 from fabaff/ultraheat-api

python310Packages.ultraheat-api: init at 0.4.0
This commit is contained in:
Fabian Affolter 2022-06-13 09:05:23 +02:00 committed by GitHub
commit ff3d295d9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 40 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };