587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
48 lines
925 B
Nix
48 lines
925 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 ];
|
|
};
|
|
}
|