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