python311Packages.wn: disable on unsupported Python releases

This commit is contained in:
Fabian Affolter
2023-12-07 10:12:31 +01:00
committed by GitHub
parent 164d1afc5b
commit b39187d6da
@@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
, flit-core
, requests
, tomli
@@ -10,7 +11,9 @@
buildPythonPackage rec {
pname = "wn";
version = "0.9.5";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;