1{ stdenv, buildPythonPackage, fetchPypi, glibcLocales }:
2
3buildPythonPackage rec {
4 pname = "Unidecode";
5 version = "1.1.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "2b6aab710c2a1647e928e36d69c21e76b453cd455f4e2621000e54b2a9b8cce8";
10 };
11
12 LC_ALL="en_US.UTF-8";
13
14 buildInputs = [ glibcLocales ];
15
16 meta = with stdenv.lib; {
17 homepage = https://pypi.python.org/pypi/Unidecode/;
18 description = "ASCII transliterations of Unicode text";
19 license = licenses.gpl2;
20 maintainers = with maintainers; [ domenkozar ];
21 };
22}