3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #210869 from fabaff/pyahocorasick-bump

python310Packages.pyahocorasick: 2.0.0b1 -> 2.0.0
This commit is contained in:
Fabian Affolter 2023-01-22 12:00:39 +01:00 committed by GitHub
commit 992dc6d08a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "pyahocorasick";
version = "2.0.0b1";
version = "2.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -16,8 +16,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "WojciechMula";
repo = pname;
rev = version;
hash = "sha256-APpL99kOwzIQjePvRDeJ0FDm1kjBi6083JMKuBqtaRk=";
rev = "refs/tags/${version}";
hash = "sha256-Ugl7gHyubXpxe4aots2e9stLuQAZEWsrlDuAHdSC0SA=";
};
nativeCheckInputs = [
@ -36,6 +36,7 @@ buildPythonPackage rec {
key strings occurrences at once in some input text.
'';
homepage = "https://github.com/WojciechMula/pyahocorasick";
changelog = "https://github.com/WojciechMula/pyahocorasick/blob/${version}/CHANGELOG.rst";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ fab ];
};