depot/third_party/nixpkgs/pkgs/development/python-modules/defcon/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

47 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
setuptools-scm,
fonttools,
fontpens,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "defcon";
version = "0.10.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Vt4m18dfFk7qA+KLwRtMdpxo1wX6GG38rrVsJ/mkzAw=";
extension = "zip";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
fonttools
] ++ fonttools.optional-dependencies.ufo ++ fonttools.optional-dependencies.unicode;
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "defcon" ];
passthru.optional-dependencies = {
pens = [ fontpens ];
lxml = [ fonttools ] ++ fonttools.optional-dependencies.lxml;
};
meta = with lib; {
description = "Set of UFO based objects for use in font editing applications";
homepage = "https://github.com/robotools/defcon";
changelog = "https://github.com/robotools/defcon/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ sternenseemann ];
};
}