Unverified Commit 68400b42 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python312Packages.faster-fifo: 1.4.5 -> 1.4.6

parent 8ff6ad5d
Loading
Loading
Loading
Loading
+2 −10
Original line number Diff line number Diff line
@@ -2,8 +2,6 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  stdenv,
  gcc12Stdenv,

  # build-system
  cython,
@@ -14,22 +12,16 @@
  unittestCheckHook,
}:

let
  stdenv' = if stdenv.isLinux then gcc12Stdenv else stdenv;
in
buildPythonPackage rec {
  pname = "faster-fifo";
  version = "1.4.5";
  version = "1.4.6";
  format = "pyproject";

  # https://github.com/alex-petrenko/faster-fifo/issues/47\
  stdenv = stdenv';

  src = fetchFromGitHub {
    owner = "alex-petrenko";
    repo = "faster-fifo";
    rev = "v${version}";
    hash = "sha256-35kD+RWXwUXHG5leTVj4wY6hJAjDka69YczgSTIbCeg=";
    hash = "sha256-vgaaIJTtNg2XqEZ9TB7tTMPJ9yMyWjtfdgNU/lcNLcg=";
  };

  nativeBuildInputs = [