My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ufonormalizer/default.nix

23 lines
635 B

{ lib, buildPythonPackage, fetchPypi, pythonOlder, setuptools-scm }:
buildPythonPackage rec {
pname = "ufonormalizer";
version = "0.6.1";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "e61110e75a500083f265385b1354b578610f9542e3bbbeedb98a2a6155e4aa6c";
extension = "zip";
};
nativeBuildInputs = [ setuptools-scm ];
meta = with lib; {
description = "Script to normalize the XML and other data inside of a UFO";
homepage = "https://github.com/unified-font-object/ufoNormalizer";
license = licenses.bsd3;
maintainers = [ maintainers.sternenseemann ];
};
}