pythonPackages.executor: disable python2

This commit is contained in:
Jonathan Ringer 2020-08-29 11:05:43 -07:00 committed by Frederik Rietdijk
parent ba537f97a7
commit 96df058bfe

View file

@ -1,8 +1,9 @@
{ lib, buildPythonPackage, fetchFromGitHub, coloredlogs, property-manager, fasteners, pytest, mock, virtualenv }: { lib, buildPythonPackage, fetchFromGitHub, isPy27, coloredlogs, property-manager, fasteners, pytest, mock, virtualenv }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "executor"; pname = "executor";
version = "21.3"; version = "21.3";
disabled = isPy27;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "xolox"; owner = "xolox";