python311Packages.unidecode: 1.3.6 -> 1.3.8

Changelog: https://github.com/avian2/unidecode/blob/unidecode-1.3.8/ChangeLog
This commit is contained in:
Fabian Affolter
2024-02-14 10:51:39 +01:00
parent 36ab9337c0
commit 05137505f7
@@ -3,22 +3,27 @@
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "unidecode";
version = "1.3.6";
format = "setuptools";
version = "1.3.8";
pyproject = true;
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "avian2";
repo = pname;
rev = "${pname}-${version}";
hash = "sha256-75E2OlrGIxvwR9MeZEB4bDLdFd1SdprCVcBIJCPS3hM=";
repo = "unidecode";
rev = "refs/tags/${pname}-${version}";
hash = "sha256-OoJSY+dNNISyVwKuRboMH7Je8nYFKxus2c4v3VsmyRE=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];