python310Packages.rebulk: disable on unsupported Python releases

This commit is contained in:
Fabian Affolter
2023-02-24 08:53:43 +01:00
parent 499672e597
commit 18964e09c9
@@ -1,8 +1,11 @@
{ lib, buildPythonPackage, fetchPypi, pytest, pytest-runner, six, regex}:
{ lib, buildPythonPackage, fetchPypi, pytest, pytest-runner, six, regex, pythonOlder }:
buildPythonPackage rec {
pname = "rebulk";
version = "3.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;