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 { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy27
, nose , nose
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "2.0.1"; version = "2.0.1";
pname = "python-json-logger"; pname = "python-json-logger";
disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;