python2Packages.traits: disable python2, abandoned

This commit is contained in:
Jonathan Ringer 2020-06-16 14:19:33 -07:00
parent 9b38751608
commit 024a30e9f2

View File

@ -1,6 +1,7 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy27
, python , python
, pytest , pytest
, numpy , numpy
@ -9,6 +10,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "traits"; pname = "traits";
version = "6.1.0"; version = "6.1.0";
disabled = isPy27; # setup.py no longer py3 compat
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;