pythonPackages.unicode-slugify: init at 0.1.3
This commit is contained in:
parent
316402e4e6
commit
5417887d7a
2 changed files with 31 additions and 0 deletions
29
pkgs/development/python-modules/unicode-slugify/default.nix
Normal file
29
pkgs/development/python-modules/unicode-slugify/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, nose
|
||||||
|
, six
|
||||||
|
, unittest2
|
||||||
|
, unidecode
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "unicode-slugify";
|
||||||
|
version = "0.1.3";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0l7nphfdq9rgiczbl8n3mra9gx7pxap0xz540pkyz034zbz3mkrl";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six unidecode ];
|
||||||
|
|
||||||
|
checkInputs = [ nose unittest2 ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Generates unicode slugs";
|
||||||
|
homepage = "https://pypi.org/project/unicode-slugify/";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ mmai ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5453,6 +5453,8 @@ in {
|
||||||
|
|
||||||
unicodecsv = callPackage ../development/python-modules/unicodecsv { };
|
unicodecsv = callPackage ../development/python-modules/unicodecsv { };
|
||||||
|
|
||||||
|
unicode-slugify = callPackage ../development/python-modules/unicode-slugify { };
|
||||||
|
|
||||||
unidiff = callPackage ../development/python-modules/unidiff { };
|
unidiff = callPackage ../development/python-modules/unidiff { };
|
||||||
|
|
||||||
units = callPackage ../development/python-modules/units { };
|
units = callPackage ../development/python-modules/units { };
|
||||||
|
|
Loading…
Reference in a new issue