nixpkgs/pkgs/development/python-modules/character-encoding-utils/default.nix
Martin Weinelt 37ccc81bb6 python3Packages.character-encoding-utils: 0.0.9 -> 0.0.12
This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:24 +01:00

39 lines
823 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
nix-update-script,
hatchling,
}:
buildPythonPackage rec {
pname = "character-encoding-utils";
version = "0.0.12";
pyproject = true;
src = fetchPypi {
pname = "character_encoding_utils";
inherit version;
hash = "sha256-sOXdpO7c2EpbNbJK1WIYx/Xb5UGIMW8daw154V/NpU0=";
};
build-system = [ hatchling ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "character_encoding_utils" ];
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/TakWolf/character-encoding-utils";
description = "Some character encoding utils";
platforms = lib.platforms.all;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
TakWolf
h7x4
];
};
}