pythonPackages.coveralls: disabled python2, not compatible

This commit is contained in:
Jonathan Ringer 2020-06-16 13:50:24 -07:00
parent f8bf71047b
commit 77fe6c1c76
1 changed files with 2 additions and 1 deletions

View File

@ -1,10 +1,11 @@
{ stdenv, fetchPypi, buildPythonPackage { stdenv, fetchPypi, buildPythonPackage, isPy27
, mock, pytestCheckHook, nose, hypothesis , mock, pytestCheckHook, nose, hypothesis
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "dpath"; pname = "dpath";
version = "2.0.1"; version = "2.0.1";
disabled = isPy27; # uses python3 imports
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;