mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-14 16:14:50 +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
|
, 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 ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user