python313Packages.normality: 2.6.1 -> 3.0.1

Diff: https://github.com/pudo/normality/compare/2.6.1...3.0.1
This commit is contained in:
Fabian Affolter 2025-08-06 20:36:56 +02:00
parent 737049ee45
commit 3cbc97be2c

View File

@ -3,36 +3,36 @@
fetchFromGitHub,
buildPythonPackage,
hatchling,
text-unidecode,
charset-normalizer,
chardet,
banal,
pyicu,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "normality";
version = "2.6.1";
version = "3.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pudo";
repo = "normality";
rev = version;
hash = "sha256-RsZP/GkEuPKGZK2+/57kvMwm9vk0FTKN2/XtOmfoZxA=";
tag = version;
hash = "sha256-AAxFsdh2pv317hn9vr8Xpz9QPLYEa3KMDcObwR51NWo=";
};
buildInputs = [ hatchling ];
build-system = [ hatchling ];
propagatedBuildInputs = [
dependencies = [
charset-normalizer
text-unidecode
chardet
banal
pyicu
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "normality" ];
meta = {