mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 15:14:13 +00:00
python311Packages.bids-validator: add changelog to meta
This commit is contained in:
parent
caa589cdc0
commit
b40d3f1e2e
@ -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 ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user