python310Packages.dtschema: disable on unsupported Python releases

This commit is contained in:
Fabian Affolter 2023-03-04 16:06:03 +01:00
parent 76f91af215
commit 7f7b178284

View File

@ -12,6 +12,9 @@
buildPythonPackage rec {
pname = "dtschema";
version = "2022.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;