Unverified Commit 8b306369 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

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

Revert "python3Packages.preshed: 3.0.9 -> 4.0.0"
parents 7232f19f 5ad6d050
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -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";