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 {
|
||||
pname = "google-re2";
|
||||
version = "0.2.20220201";
|
||||
disabled = pythonOlder "3.6";
|
||||
version = "0.2.20220401";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-H8eMC1dM+9ukuRIN4uWWs7oRuQ0tpGaCwaCl0tp+lE8=";
|
||||
hash = "sha256-v3G+MvFV8gq9LJqj/zrtlTjRm0ZNxTh0UdQSPiwFHY4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pybind11 re2 six
|
||||
pybind11
|
||||
re2
|
||||
six
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"re2"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "RE2 Python bindings";
|
||||
homepage = "https://github.com/google/re2";
|
||||
license = licenses.bsd3;
|
||||
homepage = "https://github.com/google/re2";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ alexbakker ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue