Merge pull request #284004 from fabaff/python-slugify-bump

python311Packages.python-slugify: 8.0.1 -> 8.0.4
This commit is contained in:
Mario Rodas
2024-02-11 14:09:26 -05:00
committed by GitHub
@@ -3,24 +3,29 @@
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
, text-unidecode
, unidecode
}:
buildPythonPackage rec {
pname = "python-slugify";
version = "8.0.1";
format = "setuptools";
version = "8.0.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "un33k";
repo = pname;
repo = "python-slugify";
rev = "refs/tags/v${version}";
hash = "sha256-MJac63XjgWdUQdyyEm8O7gAGVszmHxZzRF4frJtR0BU=";
hash = "sha256-zReUMIkItnDot3XyYCoPUNHrrAllbClWFYcxdTy3A30=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
text-unidecode
];