From ad3f2ad42e300a617f5cea761631a4573d5bbca9 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Tue, 16 Jun 2020 14:02:08 -0700 Subject: [PATCH] pythonPackages.inflection: disable python2, abandoned --- pkgs/development/python-modules/inflection/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/inflection/default.nix b/pkgs/development/python-modules/inflection/default.nix index f41e72def8d..bf370d7ebf3 100644 --- a/pkgs/development/python-modules/inflection/default.nix +++ b/pkgs/development/python-modules/inflection/default.nix @@ -1,8 +1,9 @@ -{ lib, fetchPypi, buildPythonPackage, pytest } : +{ lib, fetchPypi, buildPythonPackage, isPy27, pytest } : buildPythonPackage rec { pname = "inflection"; version = "0.4.0"; + disabled = isPy27; src = fetchPypi { inherit pname version;