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
1 changed files with 2 additions and 0 deletions

View File

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