nixpkgs/pkgs/development/python-modules/python-slugify/default.nix

26 lines
688 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, python, text-unidecode }:
2017-05-03 06:17:48 +02:00
buildPythonPackage rec {
pname = "python-slugify";
2019-10-24 08:47:45 +02:00
version = "4.0.0";
2017-05-03 06:17:48 +02:00
src = fetchPypi {
inherit pname version;
2019-10-24 08:47:45 +02:00
sha256 = "a8fc3433821140e8f409a9831d13ae5deccd0b033d4744d94b31fea141bdd84c";
2017-05-03 06:17:48 +02:00
};
propagatedBuildInputs = [ text-unidecode ];
checkPhase = ''
${python.interpreter} test.py
'';
2017-05-03 06:17:48 +02:00
meta = with stdenv.lib; {
homepage = "https://github.com/un33k/python-slugify";
2017-05-03 06:17:48 +02:00
description = "A Python Slugify application that handles Unicode";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ vrthra ];
};
}