forked from mirrors/nixpkgs
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' ```
This commit is contained in:
parent
f9dadbac50
commit
7f6d634d04
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue