depot/third_party/nixpkgs/pkgs/development/python-modules/unicode-slugify/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
657 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
nose,
six,
unidecode,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "unicode-slugify";
version = "0.1.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "25f424258317e4cb41093e2953374b3af1f23097297664731cdb3ae46f6bd6c3";
};
propagatedBuildInputs = [
six
unidecode
];
nativeCheckInputs = [
nose
unittestCheckHook
];
meta = with lib; {
description = "Generates unicode slugs";
homepage = "https://pypi.org/project/unicode-slugify/";
license = licenses.bsd3;
maintainers = with maintainers; [ mmai ];
};
}