nixpkgs/pkgs/development/python-modules/pydyf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
908 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, flit-core
, ghostscript
, pillow
, pytestCheckHook
, pythonOlder
2021-11-16 22:29:57 +00:00
}:
buildPythonPackage rec {
pname = "pydyf";
version = "0.5.0";
format = "pyproject";
disabled = pythonOlder "3.7";
2021-11-16 22:29:57 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-UedRrhUEA3wfwfSBURkTewEYAs1fbDU52wZsRVsUp+E=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace "--isort --flake8 --cov --no-cov-on-fail" ""
'';
2021-11-16 22:29:57 +00:00
nativeBuildInputs = [
flit-core
];
nativeCheckInputs = [
2021-11-16 22:29:57 +00:00
ghostscript
pillow
pytestCheckHook
];
pythonImportsCheck = [
"pydyf"
2021-11-16 22:29:57 +00:00
];
meta = with lib; {
description = "Low-level PDF generator written in Python and based on PDF specification 1.7";
homepage = "https://doc.courtbouillon.org/pydyf/stable/";
2021-11-16 22:29:57 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ rprecenth ];
};
}