python312Packages.mrjob: disable

This commit is contained in:
Robert Schütz 2024-03-03 14:24:15 -08:00
parent 1beb205d50
commit 973f67ed60

View File

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, pythonAtLeast
, fetchFromGitHub
# propagates
@ -25,7 +26,9 @@
buildPythonPackage rec {
pname = "mrjob";
version = "0.7.4";
format = "setuptools";
# https://github.com/Yelp/mrjob/issues/2222
disabled = pythonAtLeast "3.12";
src = fetchFromGitHub {
owner = "Yelp";