1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

Merge pull request #9787 from desiderius/unidecode-0.4.18

pythonPackages.unidecode: 0.04.12 -> 0.04.18
This commit is contained in:
Domen Kožar 2015-09-11 10:07:34 +02:00
commit 900138840d

View file

@ -16722,13 +16722,19 @@ let
unidecode = buildPythonPackage rec {
name = "Unidecode-0.04.12";
name = "Unidecode-0.04.18";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/U/Unidecode/${name}.tar.gz";
md5 = "351dc98f4512bdd2e93f7a6c498730eb";
sha256 = "12hhblqy1ajvidm38im4171x4arg83pfmziyn53nizp29p3m14gi";
};
preBuild = ''
export LC_ALL="en_US.UTF-8"
'';
buildInputs = [ pkgs.glibcLocales ];
meta = {
homepage = http://pypi.python.org/pypi/Unidecode/;
description = "ASCII transliterations of Unicode text";