summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-08-15 15:56:27 -0700
committerJonathan Ringer <jonringer117@gmail.com>2020-08-15 17:32:06 -0700
commit7f6d634d04414965dbfd03de4659446cc58b1e7d (patch)
tree89936115a83e58b79ba112a922030542bb02a006
parentf9dadbac5041b8c0a482ab57edac3dce633a551e (diff)
downloadnixpkgs-7f6d634d04414965dbfd03de4659446cc58b1e7d.tar
nixpkgs-7f6d634d04414965dbfd03de4659446cc58b1e7d.tar.gz
nixpkgs-7f6d634d04414965dbfd03de4659446cc58b1e7d.tar.bz2
nixpkgs-7f6d634d04414965dbfd03de4659446cc58b1e7d.tar.lz
nixpkgs-7f6d634d04414965dbfd03de4659446cc58b1e7d.tar.xz
nixpkgs-7f6d634d04414965dbfd03de4659446cc58b1e7d.tar.zst
nixpkgs-7f6d634d04414965dbfd03de4659446cc58b1e7d.zip
python2Packages.pytest-testmon: disable python2
```
  Processing ./pytest_testmon-1.0.2-py2-none-any.whl
  ERROR: Package 'pytest-testmon' requires a different Python: 2.7.18 not in '>=3.6'
```
-rw-r--r--pkgs/development/python-modules/pytest-testmon/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytest-testmon/default.nix b/pkgs/development/python-modules/pytest-testmon/default.nix
index 3b649bea57d..9d9add16782 100644
--- a/pkgs/development/python-modules/pytest-testmon/default.nix
+++ b/pkgs/development/python-modules/pytest-testmon/default.nix
@@ -1,6 +1,7 @@
 { lib
 , buildPythonPackage
 , fetchPypi
+, pythonOlder
 , coverage
 , pytest
 }:
@@ -8,6 +9,7 @@
 buildPythonPackage rec {
   pname = "pytest-testmon";
   version = "1.0.2";
+  disabled = pythonOlder "3.6";
 
   src = fetchPypi {
     inherit pname version;