b41113241d
GitOrigin-RevId: ae1dc133ea5f1538d035af41e5ddbc2ebcb67b90
38 lines
749 B
Nix
38 lines
749 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pyserial
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ultraheat-api";
|
|
version = "0.4.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "ultraheat_api";
|
|
inherit version;
|
|
hash = "sha256-sdZweq5TDl54UKHqQ0zlFQq0h+piisMKs2P/3E2vqX8=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|