fpdf: init at 1.7.2
This commit is contained in:
parent
f381367603
commit
266292a4bc
21
pkgs/development/python-modules/fpdf/default.nix
Normal file
21
pkgs/development/python-modules/fpdf/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4611,6 +4611,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fpdf = callPackage ../development/python-modules/fpdf { };
|
||||||
|
|
||||||
fritzconnection = callPackage ../development/python-modules/fritzconnection { };
|
fritzconnection = callPackage ../development/python-modules/fritzconnection { };
|
||||||
|
|
||||||
frozendict = buildPythonPackage rec {
|
frozendict = buildPythonPackage rec {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user