Merge pull request #144716 from fabaff/bump-aiopvpc

authored by

Sandro and committed by
GitHub
1e582f8a a9902899

+14 -9
+7 -4
pkgs/development/python-modules/aiopvpc/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "aiopvpc"; 18 - version = "2.2.0"; 19 disabled = pythonOlder "3.8"; 20 - format = "pyproject"; 21 22 src = fetchFromGitHub { 23 owner = "azogue"; 24 repo = pname; 25 rev = "v${version}"; 26 - sha256 = "1hk3giwzzlcqnpw9kx3zrr808nmdb7qwac60fki5395qffd2fpqw"; 27 }; 28 29 nativeBuildInputs = [ ··· 49 " --cov --cov-report term --cov-report html" "" 50 ''; 51 52 - pythonImportsCheck = [ "aiopvpc" ]; 53 54 meta = with lib; { 55 description = "Python module to download Spanish electricity hourly prices (PVPC)";
··· 15 16 buildPythonPackage rec { 17 pname = "aiopvpc"; 18 + version = "2.2.2"; 19 + format = "pyproject"; 20 + 21 disabled = pythonOlder "3.8"; 22 23 src = fetchFromGitHub { 24 owner = "azogue"; 25 repo = pname; 26 rev = "v${version}"; 27 + sha256 = "sha256-wNMHzeKJ1kG0jnoI5fO3d5CBXE0cyoK92BkGunXK3pI="; 28 }; 29 30 nativeBuildInputs = [ ··· 50 " --cov --cov-report term --cov-report html" "" 51 ''; 52 53 + pythonImportsCheck = [ 54 + "aiopvpc" 55 + ]; 56 57 meta = with lib; { 58 description = "Python module to download Spanish electricity hourly prices (PVPC)";
+7 -5
pkgs/development/python-modules/holidays/default.nix
··· 7 , korean-lunar-calendar 8 , pytestCheckHook 9 , pythonOlder 10 - , six 11 }: 12 13 buildPythonPackage rec { 14 pname = "holidays"; 15 version = "0.11.3.1"; 16 disabled = pythonOlder "3.6"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - sha256 = "4855afe0ebf428efbcf848477828b889f8515be7f4f15ae26682919369d92774"; 21 }; 22 23 propagatedBuildInputs = [ ··· 25 python-dateutil 26 hijri-converter 27 korean-lunar-calendar 28 - six 29 ]; 30 31 checkInputs = [ 32 pytestCheckHook 33 ]; 34 35 - pythonImportsCheck = [ "holidays" ]; 36 37 meta = with lib; { 38 homepage = "https://github.com/dr-prodigy/python-holidays"; 39 - description = "Generate and work with holidays in Python"; 40 license = licenses.mit; 41 maintainers = with maintainers; [ jluttine ]; 42 };
··· 7 , korean-lunar-calendar 8 , pytestCheckHook 9 , pythonOlder 10 }: 11 12 buildPythonPackage rec { 13 pname = "holidays"; 14 version = "0.11.3.1"; 15 + format = "setuptools"; 16 + 17 disabled = pythonOlder "3.6"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + sha256 = "sha256-SFWv4Ov0KO+8+EhHeCi4ifhRW+f08VriZoKRk2nZJ3Q="; 22 }; 23 24 propagatedBuildInputs = [ ··· 26 python-dateutil 27 hijri-converter 28 korean-lunar-calendar 29 ]; 30 31 checkInputs = [ 32 pytestCheckHook 33 ]; 34 35 + pythonImportsCheck = [ 36 + "holidays" 37 + ]; 38 39 meta = with lib; { 40 + description = "Generate and work with holidays in Python"; 41 homepage = "https://github.com/dr-prodigy/python-holidays"; 42 license = licenses.mit; 43 maintainers = with maintainers; [ jluttine ]; 44 };