linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / unidecode / default.nix
blob65cb0882380fe84321c5cfa6512f25c25e112d2d
1 { lib, buildPythonPackage, fetchPypi, glibcLocales }:
3 buildPythonPackage rec {
4   pname = "Unidecode";
5   version = "1.1.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "a039f89014245e0cad8858976293e23501accc9ff5a7bdbc739a14a2b7b85cdc";
10   };
12   LC_ALL="en_US.UTF-8";
14   buildInputs = [ glibcLocales ];
16   meta = with 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   };