python3Packages.databricks-connect: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-01-23 10:21:41 +01:00 committed by GitHub
parent 0dbfd00968
commit 2d7988a124
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,18 @@
{ lib, jdk8, buildPythonPackage, fetchPypi, six, py4j }:
{ lib
, jdk8
, buildPythonPackage
, fetchPypi
, six
, py4j
, pythonOlder
}:
buildPythonPackage rec {
pname = "databricks-connect";
version = "9.1.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;