python35Packages.vega: disable python{2,35}, abandonded

```
  Processing ./vega-3.4.0-py2-none-any.whl
  ERROR: Package 'vega' requires a different Python: 2.7.18 not in '>=3.6.1'
  builder for '/nix/store/l6f04q9sk1a3n8rl4rscaz2w8xinygfr-python2.7-vega-3.4.0.drv' failed with exit code 1
```
This commit is contained in:
Jonathan Ringer 2020-07-07 13:05:02 -07:00
parent 4a9dac0081
commit 159b4eddb4
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

@ -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;