mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
23 lines
505 B
Nix
23 lines
505 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fpdf";
|
|
version = "1.7.2";
|
|
format = "setuptools";
|
|
|
|
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 ];
|
|
};
|
|
}
|