python312Packages.opower: 0.4.5 -> 0.4.6

Diff: https://github.com/tronikos/opower/compare/refs/tags/v0.4.5...v0.4.6

Changelog: https://github.com/tronikos/opower/releases/tag/v0.4.6
This commit is contained in:
Fabian Affolter
2024-05-30 14:34:53 +02:00
parent da3499fee9
commit 78a1321bbb
@@ -1,19 +1,20 @@
{
lib,
aiohttp,
aiozoneinfo,
arrow,
buildPythonPackage,
fetchFromGitHub,
pyotp,
pytestCheckHook,
python-dotenv,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "opower";
version = "0.4.5";
version = "0.4.6";
pyproject = true;
disabled = pythonOlder "3.9";
@@ -22,19 +23,22 @@ buildPythonPackage rec {
owner = "tronikos";
repo = "opower";
rev = "refs/tags/v${version}";
hash = "sha256-PBxxLbVOvJSFmDXgKeI5sICUR7NJGUEUUahK9eBsvbE=";
hash = "sha256-Q+BycHN83oD2yJz+jsYRjSdswYVHA7fJPwpWtNsmi9M=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
aiozoneinfo
arrow
pyotp
python-dotenv
];
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
pytestCheckHook
python-dotenv
];
pythonImportsCheck = [ "opower" ];