1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
|
|
# build-system
|
|
setuptools,
|
|
setuptools-scm,
|
|
|
|
# dependencies
|
|
fonttools,
|
|
defcon,
|
|
fontmath,
|
|
booleanoperations,
|
|
|
|
# tests
|
|
python,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fontparts";
|
|
version = "0.13.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-+oifxmY7MUkQj3Sy75wjRmoVEPkgZaO3+8/sauMMxYA=";
|
|
extension = "zip";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dependencies = [
|
|
booleanoperations
|
|
defcon
|
|
fontmath
|
|
fonttools
|
|
]
|
|
++ defcon.optional-dependencies.pens
|
|
++ fonttools.optional-dependencies.ufo
|
|
++ fonttools.optional-dependencies.lxml
|
|
++ fonttools.optional-dependencies.unicode;
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
${python.interpreter} Lib/fontParts/fontshell/test.py
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = {
|
|
description = "API for interacting with the parts of fonts during the font development process";
|
|
homepage = "https://github.com/robotools/fontParts";
|
|
changelog = "https://github.com/robotools/fontParts/releases/tag/${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.sternenseemann ];
|
|
};
|
|
}
|