mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 12:07:47 +03:00
python2Packages.dnspython: disable for python2
This commit is contained in:
parent
bb65ec9d96
commit
fe23db1fdd
@ -1,8 +1,9 @@
|
|||||||
{ buildPythonPackage, fetchPypi, lib }:
|
{ buildPythonPackage, fetchPypi, lib, pythonOlder }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "dnspython";
|
pname = "dnspython";
|
||||||
version = "2.0.0";
|
version = "2.0.0";
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
Loading…
Reference in New Issue
Block a user