python2Packages.pyspice: disable python<3.6

This commit is contained in:
Jonathan Ringer 2020-10-05 16:24:47 -07:00 committed by Jon
parent 98e8064735
commit 0cdf133289
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, pythonOlder
, fetchPypi , fetchPypi
, libngspice , libngspice
, numpy , numpy
@ -15,6 +16,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "PySpice"; pname = "PySpice";
version = "1.4.3"; version = "1.4.3";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;