python39Packages.jupyter-repo2docker: simplify disabled

This commit is contained in:
Sandro Jäckel 2021-08-26 23:35:55 +02:00
parent 1c34482153
commit 75c8841f75
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, pythonAtLeast
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, docker
, escapism
, jinja2
@ -14,7 +14,7 @@
buildPythonPackage rec {
version = "2021.3.0";
pname = "jupyter-repo2docker";
disabled = !(pythonAtLeast "3.4");
disabled = pythonOlder "3.4";
src = fetchPypi {
inherit pname version;