python2Packages.pytools: disable for python2

This commit is contained in:
Jonathan Ringer 2020-08-16 19:27:34 -07:00
parent d86aa32426
commit 466a281408
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, decorator
, appdirs
, six
@ -11,6 +12,7 @@
buildPythonPackage rec {
pname = "pytools";
version = "2020.4";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;