2019-08-01 21:28:44 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub, isPy27
|
|
|
|
, lxml
|
|
|
|
, pytest
|
|
|
|
, text-unidecode
|
|
|
|
, xmlschema
|
|
|
|
}:
|
2018-12-20 17:45:23 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-09-29 00:16:09 +01:00
|
|
|
version = "2.2.0";
|
2018-12-20 17:45:23 +00:00
|
|
|
pname = "sepaxml";
|
2019-08-01 21:28:44 +01:00
|
|
|
disabled = isPy27;
|
2018-12-20 17:45:23 +00:00
|
|
|
|
2019-08-01 21:28:44 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "raphaelm";
|
|
|
|
repo = "python-sepaxml";
|
|
|
|
rev = version;
|
2019-09-29 00:16:09 +01:00
|
|
|
sha256 = "1qmgdcz61hs65m2fddwn9jpyk2sxifdb0f3jz1n0lgy774z0pmas";
|
2018-12-20 17:45:23 +00:00
|
|
|
};
|
|
|
|
|
2019-08-01 21:28:44 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
text-unidecode
|
|
|
|
xmlschema
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [ pytest lxml ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pytest
|
|
|
|
'';
|
2018-12-20 17:45:23 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/raphaelm/python-sepaxml/;
|
|
|
|
description = "SEPA Direct Debit XML generation in python";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ elohmeier ];
|
|
|
|
};
|
|
|
|
}
|