10 buildPythonPackage rec {
11 pname = "python-slugify";
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
20 rev = "refs/tags/v${version}";
21 hash = "sha256-MJac63XjgWdUQdyyEm8O7gAGVszmHxZzRF4frJtR0BU=";
24 propagatedBuildInputs = [
28 passthru.optional-dependencies = {
42 pythonImportsCheck = [
47 description = "Python Slugify application that handles Unicode";
48 homepage = "https://github.com/un33k/python-slugify";
49 changelog = "https://github.com/un33k/python-slugify/blob/v${version}/CHANGELOG.md";
50 license = licenses.mit;
51 maintainers = with maintainers; [ vrthra ];