3a4df29a92
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
38 lines
749 B
Nix
38 lines
749 B
Nix
{ 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 ];
|
|
};
|
|
}
|