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

View file

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