My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/fpdf/default.nix

21 lines
480 B

{ lib, 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; [ oxzi ];
};
}