linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pyicu / default.nix
blob75bbcde09cd25a138fa116a3f660390f0c86d579
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , six
6 , icu
7 }:
9 buildPythonPackage rec {
10   pname = "PyICU";
11   version = "2.6";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0wb3v421i2fnnxdywam4ay8hqvnxlz0r2nrpx5lqy3rn6dlbz9d9";
16   };
18   nativeBuildInputs = [ icu ]; # for icu-config
19   buildInputs = [ icu ];
20   checkInputs = [ pytestCheckHook six ];
22   meta = with lib; {
23     homepage = "https://github.com/ovalhub/pyicu/";
24     description = "Python extension wrapping the ICU C++ API";
25     license = licenses.mit;
26     platforms = platforms.unix;
27     maintainers = [ maintainers.rycee ];
28   };