Unverified Commit 5ad6143e authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

pyroaring: Override Cython version for tests/build (#436908)

parents e7f1d86a 76f6cf67
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -26,7 +26,16 @@ buildPythonPackage rec {
  '';

  build-system = [
    cython
    (cython.overrideAttrs (rec {
      name = "cython";
      version = "3.0.12";
      src = fetchFromGitHub {
        owner = "cython";
        repo = "cython";
        tag = version;
        hash = "sha256-clJXjQb6rVECirKRUGX0vD5a6LILzPwNo7+6KKYs2pI=";
      };
    }))
    setuptools
  ];