Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 22 lines 560 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, isPy3k }: 2 3buildPythonPackage rec { 4 version = "2.0.0"; 5 pname = "sepaxml"; 6 disabled = !isPy3k; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0jhj8fa0lbyaw15q485kyyli9qgrmqr47a6z6pgqm40kwmjghiyc"; 11 }; 12 13 # no tests included in PyPI package 14 doCheck = false; 15 16 meta = with stdenv.lib; { 17 homepage = https://github.com/raphaelm/python-sepaxml/; 18 description = "SEPA Direct Debit XML generation in python"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ elohmeier ]; 21 }; 22}