Merge pull request #143838 from r-ryantm/auto-update/python3.8-PyICU

python38Packages.PyICU: 2.7.4 -> 2.8
This commit is contained in:
Mario Rodas 2021-11-16 07:04:32 -05:00 committed by GitHub
commit 095160c76b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,27 +3,28 @@
, fetchPypi , fetchPypi
, pytestCheckHook , pytestCheckHook
, six , six
, icu68 , icu
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "PyICU"; pname = "PyICU";
version = "2.7.4"; version = "2.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "c0655302e2aea16f9acefe04152f74e5d7d70542e9e15c89ee8d763c8e097f56"; sha256 = "3d80de47045a8163db5aebc947c42b4d429eeea4f0c32af4f40b33981fa872b9";
}; };
nativeBuildInputs = [ icu68 ]; # for icu-config, but should be replaced with pkg-config nativeBuildInputs = [ icu ]; # for icu-config, but should be replaced with pkg-config
buildInputs = [ icu68 ]; buildInputs = [ icu ];
checkInputs = [ pytestCheckHook six ]; checkInputs = [ pytestCheckHook six ];
meta = with lib; { pythonImportsCheck = [ "icu" ];
homepage = "https://github.com/ovalhub/pyicu/";
description = "Python extension wrapping the ICU C++ API";
license = licenses.mit;
platforms = platforms.unix;
};
meta = with lib; {
homepage = "https://gitlab.pyicu.org/main/pyicu";
description = "Python extension wrapping the ICU C++ API";
changelog = "https://gitlab.pyicu.org/main/pyicu/-/raw/v${version}/CHANGES";
license = licenses.mit;
};
} }