python2Packages.python-json-logger: disable python2

This commit is contained in:
Jonathan Ringer 2020-10-16 10:26:43 -07:00 committed by Jon
parent efe922aaee
commit 175fe4992d

View file

@ -1,12 +1,14 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
, nose
}:
buildPythonPackage rec {
version = "2.0.1";
pname = "python-json-logger";
disabled = isPy27;
src = fetchPypi {
inherit pname version;