Merge pull request #264770 from r-ryantm/auto-update/python311Packages.agate-excel

python311Packages.agate-excel: 0.2.5 -> 0.3.0

authored by OTABI Tomoya and committed by GitHub 5350639d 2be034af

+29 -9
+29 -9
pkgs/development/python-modules/agate-excel/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage 2 - , agate, openpyxl, xlrd, olefile, pytestCheckHook 1 + { lib 2 + , fetchPypi 3 + , buildPythonPackage 4 + , agate 5 + , openpyxl 6 + , xlrd 7 + , olefile 8 + , pytestCheckHook 9 + , pythonOlder 3 10 }: 4 11 5 12 buildPythonPackage rec { 6 13 pname = "agate-excel"; 7 - version = "0.2.5"; 14 + version = "0.3.0"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.8"; 8 18 9 19 src = fetchPypi { 10 20 inherit pname version; 11 - sha256 = "62315708433108772f7f610ca769996b468a4ead380076dbaf6ffe262831b153"; 21 + hash = "sha256-IfrbPmQnGh4OMEiWJl16UUfI6X/UWj/p6J2+3Y2DzuM="; 12 22 }; 13 23 14 - propagatedBuildInputs = [ agate openpyxl xlrd olefile ]; 24 + propagatedBuildInputs = [ 25 + agate 26 + openpyxl 27 + xlrd 28 + olefile 29 + ]; 15 30 16 - nativeCheckInputs = [ pytestCheckHook ]; 31 + nativeCheckInputs = [ 32 + pytestCheckHook 33 + ]; 17 34 18 - pythonImportsCheck = [ "agate" ]; 35 + pythonImportsCheck = [ 36 + "agate" 37 + ]; 19 38 20 39 meta = with lib; { 21 40 description = "Adds read support for excel files to agate"; 22 - homepage = "https://github.com/wireservice/agate-excel"; 23 - license = licenses.mit; 41 + homepage = "https://github.com/wireservice/agate-excel"; 42 + changelog = "https://github.com/wireservice/agate-excel/blob/${version}/CHANGELOG.rst"; 43 + license = licenses.mit; 24 44 maintainers = with maintainers; [ vrthra ]; 25 45 }; 26 46 }