nixpkgs/pkgs/development/python-modules/fpdf/default.nix
Alvar Penning 0a53c6b565 maintainers: rename geistesk to oxzi
For reasons I have renamed my GitHub account and would like to include
this name change here.
2020-08-15 16:03:46 +02:00

22 lines
480 B
Nix

{ 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 ];
};
}