depot/third_party/nixpkgs/pkgs/development/python-modules/python-slugify/default.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

48 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
text-unidecode,
unidecode,
}:
buildPythonPackage rec {
pname = "python-slugify";
version = "8.0.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "un33k";
repo = "python-slugify";
rev = "refs/tags/v${version}";
hash = "sha256-zReUMIkItnDot3XyYCoPUNHrrAllbClWFYcxdTy3A30=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ text-unidecode ];
optional-dependencies = {
unidecode = [ unidecode ];
};
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "test.py" ];
pythonImportsCheck = [ "slugify" ];
meta = with lib; {
description = "Python Slugify application that handles Unicode";
mainProgram = "slugify";
homepage = "https://github.com/un33k/python-slugify";
changelog = "https://github.com/un33k/python-slugify/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = [ ];
};
}