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 {
pname = "yappi";
version = "1.2.5";
disabled = isPy27; # invalid syntax
src = fetchPypi {
inherit pname version;