Merge pull request #299627 from mweinelt/preshed-yank-revert

Revert "python3Packages.preshed: 3.0.9 -> 4.0.0"
This commit is contained in:
Martin Weinelt 2024-03-28 03:08:24 +01:00 committed by GitHub
commit 8b306369bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 2 deletions

View File

@ -11,14 +11,14 @@
buildPythonPackage rec {
pname = "preshed";
version = "4.0.0";
version = "3.0.9";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-XisLKgfdGo3uqtZhIBmEXGAu4kkH9pNuqvF6q9VuVEw=";
hash = "sha256-chhjxSRP/NJlGtCSiVGix8d7EC9OEaJRrYXTfudiFmA=";
};
nativeBuildInputs = [
@ -41,6 +41,9 @@ buildPythonPackage rec {
"preshed"
];
# don't update to 4.0.0, version was yanked
passthru.skipBulkUpdate = true;
meta = with lib; {
description = "Cython hash tables that assume keys are pre-hashed";
homepage = "https://github.com/explosion/preshed";