python3Packages.unidata-blocks: init at 0.0.6

This commit is contained in:
h7x4
2023-11-17 00:46:06 +01:00
parent 09640dbaeb
commit e64bc6f37f
2 changed files with 46 additions and 0 deletions
@@ -0,0 +1,44 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
, nix-update-script
, hatch-vcs
, hatchling
, langcodes
}:
buildPythonPackage rec {
pname = "unidata-blocks";
version = "0.0.6";
disabled = pythonOlder "3.11";
src = fetchPypi {
pname = "unidata_blocks";
inherit version;
hash = "sha256-YtIqd5Z4lQdPMNHhQYIdSi741ruXJlqLHLw1pxXhjWc=";
};
format = "pyproject";
nativeBuildInputs = [
hatch-vcs
hatchling
];
propagatedBuildInputs = [ langcodes ];
nativeCheckInputs = [ pytestCheckHook ];
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/TakWolf/unidata-blocks";
description = "A library that helps query unicode blocks by Blocks.txt";
platforms = lib.platforms.all;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ h7x4 ];
};
}
+2
View File
@@ -15262,6 +15262,8 @@ self: super: with self; {
unicrypto = callPackage ../development/python-modules/unicrypto { };
unidata-blocks = callPackage ../development/python-modules/unidata-blocks { };
unidecode = callPackage ../development/python-modules/unidecode { };
unidic = callPackage ../development/python-modules/unidic { };