Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 555 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, glibcLocales }: 2 3buildPythonPackage rec { 4 pname = "Unidecode"; 5 version = "1.0.23"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "8b85354be8fd0c0e10adbf0675f6dc2310e56fda43fa8fe049123b6c475e52fb"; 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}