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

42 lines
826 B
Nix
Raw Normal View History

2020-08-25 15:27:22 +00:00
{ lib, buildPythonPackage, fetchPypi, pythonOlder
2021-03-09 10:11:40 +00:00
, fonttools, setuptools-scm
, pytest, pytest-runner, lxml, fs, unicodedata2, fontpens
2020-08-25 15:27:22 +00:00
}:
buildPythonPackage rec {
pname = "defcon";
2021-03-12 14:31:26 +00:00
version = "0.8.1";
2021-03-09 10:11:40 +00:00
disabled = pythonOlder "3.6";
2020-08-25 15:27:22 +00:00
src = fetchPypi {
inherit pname version;
2021-03-12 14:31:26 +00:00
sha256 = "1sj9yhwkyvzchglpy07pkx5362mwlap581ibv150b5l9s5mxn2j1";
2020-08-25 15:27:22 +00:00
extension = "zip";
};
2021-03-09 10:11:40 +00:00
nativeBuildInputs = [
setuptools-scm
];
2020-08-25 15:27:22 +00:00
propagatedBuildInputs = [
fonttools
];
checkInputs = [
pytest
pytest-runner
2020-08-25 15:27:22 +00:00
lxml
fs
unicodedata2
fontpens
];
meta = with lib; {
description = "A set of UFO based objects for use in font editing applications";
homepage = "https://github.com/robotools/defcon";
license = licenses.mit;
maintainers = [ maintainers.sternenseemann ];
};
}