pythonPackages.ufonormalizer: init at 0.4.1
This commit is contained in:
parent
5db55e5106
commit
03ac35ddf7
19
pkgs/development/python-modules/ufonormalizer/default.nix
Normal file
19
pkgs/development/python-modules/ufonormalizer/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ lib, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ufonormalizer";
|
||||
version = "0.4.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0nv80x7l7sya5wzyfk9ss93r6bjzjljpkw4k8gibxp1rqrzkdms4";
|
||||
extension = "zip";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -1723,6 +1723,8 @@ in {
|
||||
inherit (pkgs.darwin.apple_sdk.frameworks) CFNetwork Security;
|
||||
};
|
||||
|
||||
ufonormalizer = callPackage ../development/python-modules/ufonormalizer { };
|
||||
|
||||
unifi = callPackage ../development/python-modules/unifi { };
|
||||
|
||||
uvcclient = callPackage ../development/python-modules/uvcclient { };
|
||||
|
Loading…
Reference in New Issue
Block a user