python: Babel: 2.5.3 -> 2.6.0
This commit is contained in:
parent
c09b89cb71
commit
4322b20013
@ -1,17 +1,21 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, pytz, pytest, freezegun }:
|
{ lib, buildPythonPackage, fetchPypi, pytz, pytest, freezegun, glibcLocales }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "Babel";
|
pname = "Babel";
|
||||||
version = "2.5.3";
|
version = "2.6.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "8ce4cb6fdd4393edd323227cba3a077bceb2a6ce5201c902c65e730046f41f14";
|
sha256 = "8cba50f48c529ca3fa18cf81fa9403be176d374ac4d60738b839122dfaaa3d23";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pytz ];
|
propagatedBuildInputs = [ pytz ];
|
||||||
|
|
||||||
checkInputs = [ pytest freezegun ];
|
checkInputs = [ pytest freezegun glibcLocales ];
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
export LC_ALL="en_US.UTF-8"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = http://babel.edgewall.org;
|
homepage = http://babel.edgewall.org;
|
||||||
|
Loading…
Reference in New Issue
Block a user