python2Packages.venusian: disable python2

This commit is contained in:
Jonathan Ringer 2020-08-15 15:41:26 -07:00
parent 6e18a2f743
commit 70e2f0805f
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
, pytest
, pytestcov
}:
@ -8,6 +9,7 @@
buildPythonPackage rec {
pname = "venusian";
version = "3.0.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;