mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 01:23:03 +00:00
python3Packages.databricks-connect: disable on older Python releases
This commit is contained in:
parent
0dbfd00968
commit
2d7988a124
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user