summary refs log tree commit diff
path: root/pkgs/development/python-modules/dpath/default.nix
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-06-16 13:50:24 -0700
committerJonathan Ringer <jonringer117@gmail.com>2020-06-16 13:50:24 -0700
commit77fe6c1c760201f377cce500b9fc81d2a399e593 (patch)
tree12229ce57ce340f411f10dc0399d3ec277a18d6b /pkgs/development/python-modules/dpath/default.nix
parentf8bf71047b50fd0728eb975d98dba19b35d5809a (diff)
downloadnixpkgs-77fe6c1c760201f377cce500b9fc81d2a399e593.tar
nixpkgs-77fe6c1c760201f377cce500b9fc81d2a399e593.tar.gz
nixpkgs-77fe6c1c760201f377cce500b9fc81d2a399e593.tar.bz2
nixpkgs-77fe6c1c760201f377cce500b9fc81d2a399e593.tar.lz
nixpkgs-77fe6c1c760201f377cce500b9fc81d2a399e593.tar.xz
nixpkgs-77fe6c1c760201f377cce500b9fc81d2a399e593.tar.zst
nixpkgs-77fe6c1c760201f377cce500b9fc81d2a399e593.zip
pythonPackages.coveralls: disabled python2, not compatible
Diffstat (limited to 'pkgs/development/python-modules/dpath/default.nix')
-rw-r--r--pkgs/development/python-modules/dpath/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/dpath/default.nix b/pkgs/development/python-modules/dpath/default.nix
index c9c9ad17981..548bd516838 100644
--- a/pkgs/development/python-modules/dpath/default.nix
+++ b/pkgs/development/python-modules/dpath/default.nix
@@ -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;