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
commit bd5314f6e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;