Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / unicode-slugify / default.nix
bloba0574f948f0da13d9b972425822618be306cd8e8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 , six
6 , unittest2
7 , unidecode
8 }:
10 buildPythonPackage rec {
11   pname = "unicode-slugify";
12   version = "0.1.3";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "0l7nphfdq9rgiczbl8n3mra9gx7pxap0xz540pkyz034zbz3mkrl";
17   };
19   propagatedBuildInputs = [ six unidecode ];
21   checkInputs = [ nose unittest2 ];
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   };