Skip to content

Commit

Permalink
pythonPackages.unidecode: 0.04.18 -> 0.04.21
Browse files Browse the repository at this point in the history
Higher version is a requirement of textacy.
  • Loading branch information
rvl committed Sep 16, 2017
1 parent 987a2be commit 151d0fd
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 20 deletions.
23 changes: 23 additions & 0 deletions pkgs/development/python-modules/unidecode/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi, glibcLocales }:

buildPythonPackage rec {
name = "${pname}-${version}";
pname = "Unidecode";
version = "0.04.21";

src = fetchPypi {
inherit pname version;
sha256 = "0lfhp9c5xrbpjvbpr12ji52g1lx04404bzzdg6pvabhzisw6l2i8";
};

LC_ALL="en_US.UTF-8";

buildInputs = [ glibcLocales ];

meta = with stdenv.lib; {
homepage = http://pypi.python.org/pypi/Unidecode/;
description = "ASCII transliterations of Unicode text";
license = licenses.gpl2;
maintainers = with maintainers; [ domenkozar ];
};
}
21 changes: 1 addition & 20 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24149,26 +24149,7 @@ EOF
};


unidecode = buildPythonPackage rec {
name = "Unidecode-0.04.18";

src = pkgs.fetchurl {
url = "mirror://pypi/U/Unidecode/${name}.tar.gz";
sha256 = "12hhblqy1ajvidm38im4171x4arg83pfmziyn53nizp29p3m14gi";
};

LC_ALL="en_US.UTF-8";

buildInputs = [ pkgs.glibcLocales ];

meta = {
homepage = http://pypi.python.org/pypi/Unidecode/;
description = "ASCII transliterations of Unicode text";
license = licenses.gpl2;
maintainers = with maintainers; [ domenkozar ];
};
};

unidecode = callPackage ../development/python-modules/unidecode {};

pyusb = buildPythonPackage rec {
name = "pyusb-1.0.0";
Expand Down

0 comments on commit 151d0fd

Please sign in to comment.