Merge pull request #92632 from jonringer/disable-vega-py2

python35Packages.vega: disable python{2,35}, abandonded
This commit is contained in:
worldofpeace
2020-07-07 17:16:10 -04:00
committed by GitHub

View File

@@ -1,9 +1,10 @@
{ stdenv, buildPythonPackage , fetchPypi
{ stdenv, buildPythonPackage , fetchPypi, pythonOlder
, pytest, jupyter_core, pandas, ipywidgets }:
buildPythonPackage rec {
pname = "vega";
version = "3.4.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;