Merge pull request #166787 from r-ryantm/auto-update/python310Packages.google-re2
python310Packages.google-re2: 0.2.20220201 -> 0.2.20220401
This commit is contained in:
commit
108bceb5e8
1 changed files with 22 additions and 7 deletions
|
@ -1,23 +1,38 @@
|
||||||
{ lib, buildPythonPackage, pythonOlder, fetchPypi, pybind11, re2, six }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, pythonOlder
|
||||||
|
, fetchPypi
|
||||||
|
, pybind11
|
||||||
|
, re2
|
||||||
|
, six
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "google-re2";
|
pname = "google-re2";
|
||||||
version = "0.2.20220201";
|
version = "0.2.20220401";
|
||||||
disabled = pythonOlder "3.6";
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-H8eMC1dM+9ukuRIN4uWWs7oRuQ0tpGaCwaCl0tp+lE8=";
|
hash = "sha256-v3G+MvFV8gq9LJqj/zrtlTjRm0ZNxTh0UdQSPiwFHY4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
pybind11 re2 six
|
pybind11
|
||||||
|
re2
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"re2"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "RE2 Python bindings";
|
description = "RE2 Python bindings";
|
||||||
homepage = "https://github.com/google/re2";
|
homepage = "https://github.com/google/re2";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ alexbakker ];
|
maintainers = with maintainers; [ alexbakker ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue