lol

Merge pull request #146985 from fabaff/bump-sepaxml

python3Packages.sepaxml: 2.2.0 -> 2.4.1

authored by

Fabian Affolter and committed by
GitHub
706f94d8 f9997ea2

+18 -10
+18 -10
pkgs/development/python-modules/sepaxml/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, isPy27 2 , lxml 3 - , pytest 4 , text-unidecode 5 , xmlschema 6 }: 7 8 buildPythonPackage rec { 9 - version = "2.2.0"; 10 pname = "sepaxml"; 11 - disabled = isPy27; 12 13 src = fetchFromGitHub { 14 owner = "raphaelm"; 15 repo = "python-sepaxml"; 16 rev = version; 17 - sha256 = "1qmgdcz61hs65m2fddwn9jpyk2sxifdb0f3jz1n0lgy774z0pmas"; 18 }; 19 20 propagatedBuildInputs = [ ··· 22 xmlschema 23 ]; 24 25 - checkInputs = [ pytest lxml ]; 26 27 - checkPhase = '' 28 - pytest 29 - ''; 30 31 meta = with lib; { 32 homepage = "https://github.com/raphaelm/python-sepaxml/"; 33 - description = "SEPA Direct Debit XML generation in python"; 34 license = licenses.mit; 35 maintainers = with maintainers; [ elohmeier ]; 36 };
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 , lxml 6 + , pytestCheckHook 7 , text-unidecode 8 , xmlschema 9 }: 10 11 buildPythonPackage rec { 12 pname = "sepaxml"; 13 + version = "2.4.1"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.6"; 17 18 src = fetchFromGitHub { 19 owner = "raphaelm"; 20 repo = "python-sepaxml"; 21 rev = version; 22 + sha256 = "sha256-Up6zHm20tc6+lQk958csdgC4FMJFhdt+oAJcNcVbcjk="; 23 }; 24 25 propagatedBuildInputs = [ ··· 27 xmlschema 28 ]; 29 30 + checkInputs = [ 31 + pytestCheckHook 32 + lxml 33 + ]; 34 35 + pythonImportsCheck = [ 36 + "sepaxml" 37 + ]; 38 39 meta = with lib; { 40 + description = "SEPA Direct Debit XML generation in python"; 41 homepage = "https://github.com/raphaelm/python-sepaxml/"; 42 license = licenses.mit; 43 maintainers = with maintainers; [ elohmeier ]; 44 };