summaryrefslogtreecommitdiffstats
path: root/pkgs
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 /pkgs
parentf9dadbac5041b8c0a482ab57edac3dce633a551e (diff)
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' ```
Diffstat (limited to 'pkgs')
-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 3b649bea57dd..9d9add167829 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;