pythonPackages.ufonormalizer: 0.4.2 -> 0.5.0
Drops support for Python 3.5 and earlier.
This commit is contained in:
parent
82294a1f2b
commit
db9f2ff9ae
@ -1,15 +1,19 @@
|
||||
{ lib, buildPythonPackage, fetchPypi }:
|
||||
{ lib, buildPythonPackage, fetchPypi, pythonOlder, setuptools_scm }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ufonormalizer";
|
||||
version = "0.4.2";
|
||||
version = "0.5.0";
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1rn64a0i151qk6h5f9pijcmja195i2d6f8jbi5h4xkgkinm9wwzj";
|
||||
sha256 = "1qc3389i2y16n1hjg4dzk821klzjipbh9c9yci70z51pp21mwwh5";
|
||||
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";
|
||||
|
Loading…
Reference in New Issue
Block a user