Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / aiopvpc / default.nix
blob19baf29f55c5c339dfb678b736b2e9c21455ef88
1 { lib
2 , aiohttp
3 , async-timeout
4 , backports-zoneinfo
5 , buildPythonPackage
6 , fetchFromGitHub
7 , poetry-core
8 , pytest-asyncio
9 , pytest-timeout
10 , pytestCheckHook
11 , pythonOlder
12 , python-dotenv
15 buildPythonPackage rec {
16   pname = "aiopvpc";
17   version = "4.3.1";
18   pyproject = true;
20   disabled = pythonOlder "3.8";
22   src = fetchFromGitHub {
23     owner = "azogue";
24     repo = "aiopvpc";
25     rev = "refs/tags/v${version}";
26     hash = "sha256-1xeXfhoXRfJ7vrpRPeYmwcAGjL09iNCOm/f4pPvuZLU=";
27   };
29   postPatch = ''
30     substituteInPlace pyproject.toml \
31       --replace-fail " --cov --cov-report term --cov-report html" ""
32   '';
34   build-system = [
35     poetry-core
36   ];
38   dependencies = [
39     aiohttp
40     async-timeout
41   ] ++ lib.optionals (pythonOlder "3.9") [
42     backports-zoneinfo
43   ];
45   nativeCheckInputs = [
46     pytest-asyncio
47     pytest-timeout
48     pytestCheckHook
49     python-dotenv
50   ];
52   pythonImportsCheck = [
53     "aiopvpc"
54   ];
56   meta = with lib; {
57     description = "Python module to download Spanish electricity hourly prices (PVPC)";
58     homepage = "https://github.com/azogue/aiopvpc";
59     changelog = "https://github.com/azogue/aiopvpc/blob/v${version}/CHANGELOG.md";
60     license = with licenses; [ mit ];
61     maintainers = with maintainers; [ fab ];
62   };