depot/third_party/nixpkgs/pkgs/development/python-modules/sepaxml/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

45 lines
817 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, lxml
, pytestCheckHook
, text-unidecode
, xmlschema
}:
buildPythonPackage rec {
pname = "sepaxml";
version = "2.5.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "raphaelm";
repo = "python-sepaxml";
rev = version;
hash = "sha256-9gPUAZ60q5o11eAnkzTBrFCpBUGxw3MGuKY4MtPxoSA=";
};
propagatedBuildInputs = [
text-unidecode
xmlschema
];
nativeCheckInputs = [
lxml
pytestCheckHook
];
pythonImportsCheck = [
"sepaxml"
];
meta = with lib; {
description = "SEPA Direct Debit XML generation in python";
homepage = "https://github.com/raphaelm/python-sepaxml/";
license = licenses.mit;
maintainers = with maintainers; [ elohmeier ];
};
}