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