python311Packages.bids-validator: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-05-13 09:53:26 +02:00 committed by GitHub
parent caa589cdc0
commit b40d3f1e2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,11 @@
{ buildPythonPackage
, lib
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
version = "1.11.0";
pname = "bids-validator";
version = "1.11.0";
src = fetchPypi {
inherit pname version;
@ -15,11 +15,14 @@ buildPythonPackage rec {
# needs packages which are not available in nixpkgs
doCheck = false;
pythonImportsCheck = [ "bids_validator" ];
pythonImportsCheck = [
"bids_validator"
];
meta = with lib; {
description = "Validator for the Brain Imaging Data Structure";
homepage = "https://github.com/bids-standard/bids-validator";
changelog = "https://github.com/bids-standard/bids-validator/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};