python2Packages.yappi: disable python2

This commit is contained in:
Jonathan Ringer 2020-08-15 15:54:31 -07:00
parent dcef1818a0
commit f9dadbac50
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

@ -1,8 +1,9 @@
{ lib, buildPythonPackage, fetchPypi, nose }: { lib, buildPythonPackage, fetchPypi, isPy27, nose }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "yappi"; pname = "yappi";
version = "1.2.5"; version = "1.2.5";
disabled = isPy27; # invalid syntax
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;