pythonPackages.coveralls: disabled python2, not compatible
This commit is contained in:
parent
f8bf71047b
commit
77fe6c1c76
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue