python2Packages.dnspython: disable for python2

This commit is contained in:
Jonathan Ringer 2020-08-16 19:13:55 -07:00
parent bb65ec9d96
commit fe23db1fdd
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

@ -1,8 +1,9 @@
{ buildPythonPackage, fetchPypi, lib }:
{ buildPythonPackage, fetchPypi, lib, pythonOlder }:
buildPythonPackage rec {
pname = "dnspython";
version = "2.0.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;