about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/sepaxml/default.nix
blob: deb24a7130a7768d7a6b86546267459afbd0d907 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 ];
  };
}