Merge pull request #317143 from TakWolf/ark-pixel-deps
ark-pixel-font: dependencies update and fix
This commit is contained in:
commit
96d94375d4
@ -19560,6 +19560,12 @@
|
|||||||
githubId = 870673;
|
githubId = 870673;
|
||||||
name = "Takuo Yonezawa";
|
name = "Takuo Yonezawa";
|
||||||
};
|
};
|
||||||
|
TakWolf = {
|
||||||
|
email = "takwolf@foxmail.com";
|
||||||
|
github = "TakWolf";
|
||||||
|
githubId = 6064962;
|
||||||
|
name = "TakWolf";
|
||||||
|
};
|
||||||
talkara = {
|
talkara = {
|
||||||
email = "taito.horiuchi@relexsolutions.com";
|
email = "taito.horiuchi@relexsolutions.com";
|
||||||
github = "talkara";
|
github = "talkara";
|
||||||
|
@ -2,42 +2,41 @@
|
|||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchPypi,
|
fetchPypi,
|
||||||
pytestCheckHook,
|
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
|
pytestCheckHook,
|
||||||
nix-update-script,
|
nix-update-script,
|
||||||
hatch-vcs,
|
|
||||||
hatchling,
|
hatchling,
|
||||||
brotli,
|
|
||||||
fonttools,
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "bdffont";
|
pname = "bdffont";
|
||||||
version = "0.0.26";
|
version = "0.0.26";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.11";
|
disabled = pythonOlder "3.10";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "bdffont";
|
||||||
|
inherit version;
|
||||||
hash = "sha256-Q8IqwJmAYFicTX7RrVU9UvGZX+oaPb0RKlIFwArktXk=";
|
hash = "sha256-Q8IqwJmAYFicTX7RrVU9UvGZX+oaPb0RKlIFwArktXk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
format = "pyproject";
|
build-system = [ hatchling ];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
hatch-vcs
|
|
||||||
hatchling
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeCheckInputs = [ pytestCheckHook ];
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "bdffont" ];
|
||||||
|
|
||||||
passthru.updateScript = nix-update-script { };
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/TakWolf/bdffont";
|
homepage = "https://github.com/TakWolf/bdffont";
|
||||||
description = "Library for manipulating .bdf format fonts";
|
description = "A library for manipulating Glyph Bitmap Distribution Format (BDF) Fonts";
|
||||||
platforms = lib.platforms.all;
|
platforms = lib.platforms.all;
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with lib.maintainers; [ h7x4 ];
|
maintainers = with lib.maintainers; [
|
||||||
|
TakWolf
|
||||||
|
h7x4
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchPypi,
|
fetchPypi,
|
||||||
hatch-vcs,
|
|
||||||
hatchling,
|
|
||||||
pytestCheckHook,
|
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
|
pytestCheckHook,
|
||||||
|
nix-update-script,
|
||||||
|
hatchling,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -13,7 +13,7 @@ buildPythonPackage rec {
|
|||||||
version = "0.0.8";
|
version = "0.0.8";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.11";
|
disabled = pythonOlder "3.10";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "character_encoding_utils";
|
pname = "character_encoding_utils";
|
||||||
@ -21,19 +21,22 @@ buildPythonPackage rec {
|
|||||||
hash = "sha256-UXX4L/x7fP37ZEFDCPc0KRNyx47xvwY0Jz+lfxzUulg=";
|
hash = "sha256-UXX4L/x7fP37ZEFDCPc0KRNyx47xvwY0Jz+lfxzUulg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [
|
build-system = [ hatchling ];
|
||||||
hatch-vcs
|
|
||||||
hatchling
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeCheckInputs = [ pytestCheckHook ];
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
pythonImportsCheck = [ "character_encoding_utils" ];
|
pythonImportsCheck = [ "character_encoding_utils" ];
|
||||||
|
|
||||||
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Some character encoding utils";
|
|
||||||
homepage = "https://github.com/TakWolf/character-encoding-utils";
|
homepage = "https://github.com/TakWolf/character-encoding-utils";
|
||||||
|
description = "Some character encoding utils";
|
||||||
|
platforms = lib.platforms.all;
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with lib.maintainers; [ h7x4 ];
|
maintainers = with lib.maintainers; [
|
||||||
|
TakWolf
|
||||||
|
h7x4
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchFromGitHub,
|
fetchPypi,
|
||||||
hatchling,
|
pythonOlder,
|
||||||
bdffont,
|
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
nix-update-script,
|
nix-update-script,
|
||||||
|
hatchling,
|
||||||
|
bdffont,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -13,11 +14,12 @@ buildPythonPackage rec {
|
|||||||
version = "0.0.14";
|
version = "0.0.14";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
disabled = pythonOlder "3.10";
|
||||||
owner = "TakWolf";
|
|
||||||
repo = "pcffont";
|
src = fetchPypi {
|
||||||
rev = "refs/tags/${version}";
|
pname = "pcffont";
|
||||||
hash = "sha256-UIRhUlsRd3ICdLAjUasQ1NX5NofSKCEqa8cf1c1voGM=";
|
inherit version;
|
||||||
|
hash = "sha256-S3mK4tY7zNGRX8K81QJVvaYpIaTDLx5zn4vKbhrK9VM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ hatchling ];
|
build-system = [ hatchling ];
|
||||||
@ -31,9 +33,13 @@ buildPythonPackage rec {
|
|||||||
passthru.updateScript = nix-update-script { };
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Library for manipulating Portable Compiled Format (PCF) fonts";
|
|
||||||
homepage = "https://github.com/TakWolf/pcffont";
|
homepage = "https://github.com/TakWolf/pcffont";
|
||||||
|
description = "A library for manipulating Portable Compiled Format (PCF) Fonts";
|
||||||
|
platforms = lib.platforms.all;
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with lib.maintainers; [ ];
|
maintainers = with lib.maintainers; [
|
||||||
|
TakWolf
|
||||||
|
h7x4
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -2,17 +2,15 @@
|
|||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchPypi,
|
fetchPypi,
|
||||||
pytestCheckHook,
|
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
|
pytestCheckHook,
|
||||||
nix-update-script,
|
nix-update-script,
|
||||||
hatch-vcs,
|
|
||||||
hatchling,
|
hatchling,
|
||||||
bdffont,
|
|
||||||
brotli,
|
|
||||||
fonttools,
|
fonttools,
|
||||||
pypng,
|
brotli,
|
||||||
|
bdffont,
|
||||||
pcffont,
|
pcffont,
|
||||||
pythonRelaxDepsHook,
|
pypng,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -28,26 +26,19 @@ buildPythonPackage rec {
|
|||||||
hash = "sha256-66mGZ7q64z+tTJSSveD7UCkTq7YXgsHTM25MqUSLfvM=";
|
hash = "sha256-66mGZ7q64z+tTJSSveD7UCkTq7YXgsHTM25MqUSLfvM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
pythonRelaxDeps = [ "fonttools" ];
|
build-system = [ hatchling ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
dependencies = [
|
||||||
|
fonttools
|
||||||
build-system = [
|
brotli
|
||||||
hatch-vcs
|
bdffont
|
||||||
hatchling
|
pcffont
|
||||||
];
|
|
||||||
|
|
||||||
nativeCheckInputs = [
|
|
||||||
pytestCheckHook
|
|
||||||
pypng
|
pypng
|
||||||
];
|
];
|
||||||
|
|
||||||
dependencies = [
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
bdffont
|
|
||||||
brotli
|
pythonImportsCheck = [ "pixel_font_builder" ];
|
||||||
fonttools
|
|
||||||
pcffont
|
|
||||||
];
|
|
||||||
|
|
||||||
passthru.updateScript = nix-update-script { };
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
@ -56,6 +47,9 @@ buildPythonPackage rec {
|
|||||||
description = "Library that helps create pixel style fonts";
|
description = "Library that helps create pixel style fonts";
|
||||||
platforms = lib.platforms.all;
|
platforms = lib.platforms.all;
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with lib.maintainers; [ h7x4 ];
|
maintainers = with lib.maintainers; [
|
||||||
|
TakWolf
|
||||||
|
h7x4
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -2,10 +2,9 @@
|
|||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchPypi,
|
fetchPypi,
|
||||||
pytestCheckHook,
|
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
|
pytestCheckHook,
|
||||||
nix-update-script,
|
nix-update-script,
|
||||||
hatch-vcs,
|
|
||||||
hatchling,
|
hatchling,
|
||||||
langcodes,
|
langcodes,
|
||||||
}:
|
}:
|
||||||
@ -13,8 +12,9 @@
|
|||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "unidata-blocks";
|
pname = "unidata-blocks";
|
||||||
version = "0.0.10";
|
version = "0.0.10";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.11";
|
disabled = pythonOlder "3.10";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "unidata_blocks";
|
pname = "unidata_blocks";
|
||||||
@ -22,17 +22,16 @@ buildPythonPackage rec {
|
|||||||
hash = "sha256-wwiOjfIAx6AZtK98uuPQ0jwblq+CdnMQp+JkQWh+RgM=";
|
hash = "sha256-wwiOjfIAx6AZtK98uuPQ0jwblq+CdnMQp+JkQWh+RgM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
format = "pyproject";
|
build-system = [ hatchling ];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
dependencies = [
|
||||||
hatch-vcs
|
langcodes
|
||||||
hatchling
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ langcodes ];
|
|
||||||
|
|
||||||
nativeCheckInputs = [ pytestCheckHook ];
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "unidata_blocks" ];
|
||||||
|
|
||||||
passthru.updateScript = nix-update-script { };
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
@ -40,6 +39,9 @@ buildPythonPackage rec {
|
|||||||
description = "Library that helps query unicode blocks by Blocks.txt";
|
description = "Library that helps query unicode blocks by Blocks.txt";
|
||||||
platforms = lib.platforms.all;
|
platforms = lib.platforms.all;
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with lib.maintainers; [ h7x4 ];
|
maintainers = with lib.maintainers; [
|
||||||
|
TakWolf
|
||||||
|
h7x4
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user