pythonPackages.mox3: disable python2

```
  Processing ./mox3-1.1.0-py2-none-any.whl
  ERROR: Package 'mox3' requires a different Python: 2.7.18 not in '>=3.6'
```
This commit is contained in:
Jonathan Ringer 2020-08-15 16:05:43 -07:00
parent be127b0944
commit 25abd3a680
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pythonOlder
, python
, subunit
, testrepository
@ -14,6 +15,7 @@
buildPythonPackage rec {
pname = "mox3";
version = "1.1.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;