fpdf: init at 1.7.2

This commit is contained in:
geistesk 2018-02-08 13:17:03 +01:00
parent f381367603
commit 266292a4bc
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, lib, writeText, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "fpdf";
version = "1.7.2";
src = fetchPypi {
inherit pname version;
sha256 = "0yb73c2clv581sgak5jvlvkj4wy3jav6ms5ia8jx3rw969w40n0j";
};
# No tests available
doCheck = false;
meta = {
homepage = https://github.com/reingart/pyfpdf;
description = "Simple PDF generation for Python";
license = lib.licenses.lgpl3;
maintainers = with lib.maintainers; [ geistesk ];
};
}

View file

@ -4611,6 +4611,8 @@ in {
};
};
fpdf = callPackage ../development/python-modules/fpdf { };
fritzconnection = callPackage ../development/python-modules/fritzconnection { };
frozendict = buildPythonPackage rec {