Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python311Packages.ufolib2: rename from ufoLib2 #279352

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkgs/data/fonts/cantarell-fonts/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
python3.pkgs.statmake
python3.pkgs.ufo2ft
python3.pkgs.setuptools
python3.pkgs.ufoLib2
python3.pkgs.ufolib2
gettext
appstream-glib
];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/babelfont/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
, orjson
, poetry-core
, pytestCheckHook
, ufoLib2
, ufolib2
}:

buildPythonPackage rec {
Expand All @@ -34,7 +34,7 @@ buildPythonPackage rec {
glyphslib
openstep-plist
orjson
ufoLib2
ufolib2
];
nativeBuildInputs = [
poetry-core
Expand Down
5 changes: 2 additions & 3 deletions pkgs/development/python-modules/glyphslib/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
, fetchFromGitHub
, fonttools
, openstep-plist
, ufoLib2
, ufolib2
, pytestCheckHook
, unicodedata2
, setuptools-scm
Expand Down Expand Up @@ -34,7 +34,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
fonttools
openstep-plist
ufoLib2
ufolib2
unicodedata2
ufonormalizer
xmldiff
Expand All @@ -59,4 +59,3 @@ buildPythonPackage rec {
maintainers = [ lib.maintainers.BarinovMaxim ];
};
}

4 changes: 2 additions & 2 deletions pkgs/development/python-modules/statmake/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
, pytestCheckHook
, pythonOlder
, ufo2ft
, ufoLib2
, ufolib2
}:

buildPythonPackage rec {
Expand Down Expand Up @@ -47,7 +47,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
pytestCheckHook
ufo2ft
ufoLib2
ufolib2
];

pythonImportsCheck = [
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/ufo2ft/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
, defcon
, fonttools
, skia-pathops
, ufoLib2
, ufolib2

# tests
, pytestCheckHook
Expand All @@ -40,7 +40,7 @@ buildPythonPackage rec {
compreffor
booleanoperations
cffsubr
ufoLib2
ufolib2
skia-pathops
]
++ fonttools.optional-dependencies.lxml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@
}:

buildPythonPackage rec {
pname = "ufoLib2";
pname = "ufolib2";
version = "0.16.0";
format = "pyproject";

src = fetchPypi {
inherit pname version;
pname = "ufoLib2";
inherit version;
hash = "sha256-SfDcf3LMrP5/rv4NU9N5cdRWZNiwVj7zaVb6e/pVor0=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/misc/nanoemoji/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ python3.pkgs.buildPythonApplication rec {
toml
tomlkit
ufo2ft
ufoLib2
ufolib2
zopfli
];

Expand Down
1 change: 1 addition & 0 deletions pkgs/top-level/python-aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,7 @@ mapAliases ({
tvnamer = throw "tvnamer was moved to pkgs.tvnamer"; # added 2021-07-05
types-cryptography = throw "types-cryptography has been removed because it is obsolete since cryptography version 3.4.4."; # added 2022-05-30
types-paramiko = throw "types-paramiko has been removed because it was unused."; # added 2022-05-30
ufoLib2 = ufolib2; # added 2024-01-07
ukrainealarm = throw "ukrainealarm has been removed, as it has been replaced as a home-assistant dependency by uasiren."; # added 2024-01-05
unittest2 = throw "unittest2 has been removed as it's a backport of unittest that's unmaintained and not needed beyond Python 3.4."; # added 2022-12-01
uproot3 = throw "uproot3 has been removed, use uproot instead"; # added 2022-12-13
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15493,7 +15493,7 @@ self: super: with self; {

ufo2ft = callPackage ../development/python-modules/ufo2ft { };

ufoLib2 = callPackage ../development/python-modules/ufoLib2 { };
ufolib2 = callPackage ../development/python-modules/ufolib2 { };

ufolint = callPackage ../development/python-modules/ufolint { };

Expand Down