python311Packages.bids-validator: disable on older Python releases

- add format
This commit is contained in:
Fabian Affolter 2023-05-13 10:03:59 +02:00 committed by GitHub
parent b40d3f1e2e
commit 8d2802743e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,15 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "bids-validator";
version = "1.11.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;