64 lines
1.1 KiB
Nix
64 lines
1.1 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, async-timeout
|
|
, backports-zoneinfo
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, holidays
|
|
, poetry-core
|
|
, pytest-asyncio
|
|
, pytest-timeout
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, tzdata
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiopvpc";
|
|
version = "2.2.2";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "azogue";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-wNMHzeKJ1kG0jnoI5fO3d5CBXE0cyoK92BkGunXK3pI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
backports-zoneinfo
|
|
holidays
|
|
tzdata
|
|
async-timeout
|
|
];
|
|
|
|
checkInputs = [
|
|
pytest-asyncio
|
|
pytest-timeout
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml --replace \
|
|
" --cov --cov-report term --cov-report html" ""
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"aiopvpc"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python module to download Spanish electricity hourly prices (PVPC)";
|
|
homepage = "https://github.com/azogue/aiopvpc";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|