Commit f2743253 authored by Ryan Hendrickson's avatar Ryan Hendrickson
Browse files

python311Packages.stem: disable for Python >= 3.11

parent 86bafe1e
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchPypi, python, mock }:
{ lib, buildPythonPackage, fetchPypi, python, mock, pythonAtLeast }:

buildPythonPackage rec {
  pname = "stem";
  version = "1.8.1";

  # As of May 2023, the master branch of stem contains fixes for Python 3.11
  # that the last release (1.8.1) doesn't. The test suite fails on both master
  # and the 1.8.1 release, so disabling rather than switching to an unstable
  # source.
  disabled = pythonAtLeast "3.11";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-gdQ6fGaLqde8EQOy56kR6dFIKUs3PSelmujaee96Pi8=";