pythonPackages.sepaxml: init at 2.0.0
This commit is contained in:
parent
010b1c391d
commit
16071bb5cd
22
pkgs/development/python-modules/sepaxml/default.nix
Normal file
22
pkgs/development/python-modules/sepaxml/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "2.0.0";
|
||||||
|
pname = "sepaxml";
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0jhj8fa0lbyaw15q485kyyli9qgrmqr47a6z6pgqm40kwmjghiyc";
|
||||||
|
};
|
||||||
|
|
||||||
|
# no tests included in PyPI package
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -702,6 +702,8 @@ in {
|
|||||||
|
|
||||||
selectors2 = callPackage ../development/python-modules/selectors2 { };
|
selectors2 = callPackage ../development/python-modules/selectors2 { };
|
||||||
|
|
||||||
|
sepaxml = callPackage ../development/python-modules/sepaxml { };
|
||||||
|
|
||||||
serversyncstorage = callPackage ../development/python-modules/serversyncstorage {};
|
serversyncstorage = callPackage ../development/python-modules/serversyncstorage {};
|
||||||
|
|
||||||
shellingham = callPackage ../development/python-modules/shellingham {};
|
shellingham = callPackage ../development/python-modules/shellingham {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user