Skip to content

Commit

Permalink
unicodeit: init at 0.7.5 (NixOS#341370)
Browse files Browse the repository at this point in the history
* python3.pkgs.unicodeit: init at 0.7.5

* python3.pkgs.unicodeit: define CLI entrypoint

* unicodeit: init

* fixup! python3.pkgs.unicodeit: define CLI entrypoint

* fixup! python3.pkgs.unicodeit: init at 0.7.5
  • Loading branch information
nbraud authored and name-snrl committed Sep 16, 2024
1 parent df7c3dc commit f048f52
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkgs/by-name/un/unicodeit/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
python3Packages,
}:
with python3Packages;
toPythonApplication unicodeit
61 changes: 61 additions & 0 deletions pkgs/development/python-modules/unicodeit/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
pytestCheckHook,
runCommand,

setuptools,
unicodeit,
}:
buildPythonPackage rec {
pname = "unicodeit";
version = "0.7.5";
pyproject = true;

src = fetchFromGitHub {
owner = "svenkreiss";
repo = "unicodeit";
rev = "refs/tags/v${version}";
hash = "sha256-NeR3fGDbOzwyq85Sep9KuUiARCvefN6l5xcb8D/ntHE=";
};

patches = [
(fetchpatch {
# Defines a CLI entry point, so `setuptools` generates an `unicodeit` executable
url = "https://github.com/svenkreiss/unicodeit/pull/79/commits/9f4a4fee5cb62a101075adf3054832cdb1e6a5ad.patch";
hash = "sha256-mAhmU17K0adEFFAIf7ZeJ/cNohrzrL+sol7gYfWbPGo=";
})
];

build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];

pythonImportsCheck = [
"unicodeit"
"unicodeit.cli"
];

passthru.tests.entrypoint =
runCommand "python3-unicodeit-test-entrypoint"
{
nativeBuildInputs = [ unicodeit ];
preferLocalBuild = true;
}
''
[[ "$(unicodeit "\BbbR")" = "ℝ" ]]
touch $out
'';

meta = {
description = "Converts LaTeX tags to unicode";
mainProgram = "unicodeit";
homepage = "https://github.com/svenkreiss/unicodeit";
license = with lib.licenses; [
lppl13c
mit
];
maintainers = with lib.maintainers; [ nicoo ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16809,6 +16809,8 @@ self: super: with self; {

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

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

unicode-rbnf = callPackage ../development/python-modules/unicode-rbnf { };

unicode-slugify = callPackage ../development/python-modules/unicode-slugify { };
Expand Down

0 comments on commit f048f52

Please sign in to comment.