fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
47 lines
933 B
Nix
47 lines
933 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
|
|
# build-system
|
|
hatchling,
|
|
|
|
# propagated modules
|
|
requests,
|
|
python-dateutil,
|
|
pycognito,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyemvue";
|
|
version = "0.18.5";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-cgQARaGM6Jb2kEcG7HqPStRPkhHldJ7UbxQpxN6JbZE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ hatchling ];
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
python-dateutil
|
|
pycognito
|
|
typing-extensions
|
|
];
|
|
|
|
pythonImportsCheck = [ "pyemvue" ];
|
|
|
|
# has no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/magico13/PyEmVue/releases/tag/v${version}";
|
|
description = "A Python library for reading data from the Emporia Vue energy monitoring system";
|
|
homepage = "https://github.com/magico13/PyEmVue";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ presto8 ];
|
|
};
|
|
}
|