depot/third_party/nixpkgs/pkgs/development/python-modules/ultraheat-api/default.nix
Default email 3a4df29a92 Project import generated by Copybara.
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
2022-06-16 19:23:12 +02:00

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