Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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