1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5, six
6, unittest2
7, unidecode
8}:
9
10buildPythonPackage rec {
11 pname = "unicode-slugify";
12 version = "0.1.5";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "25f424258317e4cb41093e2953374b3af1f23097297664731cdb3ae46f6bd6c3";
17 };
18
19 propagatedBuildInputs = [ six unidecode ];
20
21 checkInputs = [ nose unittest2 ];
22
23 meta = with lib; {
24 description = "Generates unicode slugs";
25 homepage = "https://pypi.org/project/unicode-slugify/";
26 license = licenses.bsd3;
27 maintainers = with maintainers; [ mmai ];
28 };
29}