python310Packages.yoda: add changelog to meta
This commit is contained in:
parent
da625fb824
commit
d666d47b96
@ -1,4 +1,13 @@
|
|||||||
{ lib, stdenv, fetchurl, fetchpatch, python, root, makeWrapper, zlib, withRootSupport ? false }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, fetchpatch
|
||||||
|
, python
|
||||||
|
, root
|
||||||
|
, makeWrapper
|
||||||
|
, zlib
|
||||||
|
, withRootSupport ? false
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "yoda";
|
pname = "yoda";
|
||||||
@ -9,11 +18,23 @@ stdenv.mkDerivation rec {
|
|||||||
hash = "sha256-jQe7BNy3k2SFhxihggNFLY2foAAp+pQjnq+oUpAyuP8=";
|
hash = "sha256-jQe7BNy3k2SFhxihggNFLY2foAAp+pQjnq+oUpAyuP8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = with python.pkgs; [ cython makeWrapper ];
|
nativeBuildInputs = with python.pkgs; [
|
||||||
buildInputs = [ python ]
|
cython
|
||||||
++ (with python.pkgs; [ numpy matplotlib ])
|
makeWrapper
|
||||||
++ lib.optional withRootSupport root;
|
];
|
||||||
propagatedBuildInputs = [ zlib ];
|
|
||||||
|
buildInputs = [
|
||||||
|
python
|
||||||
|
] ++ (with python.pkgs; [
|
||||||
|
numpy
|
||||||
|
matplotlib
|
||||||
|
]) ++ lib.optional withRootSupport [
|
||||||
|
root
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
zlib
|
||||||
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
@ -31,13 +52,15 @@ stdenv.mkDerivation rec {
|
|||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
doInstallCheck = true;
|
doInstallCheck = true;
|
||||||
|
|
||||||
installCheckTarget = "check";
|
installCheckTarget = "check";
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "Provides small set of data analysis (specifically histogramming) classes";
|
description = "Provides small set of data analysis (specifically histogramming) classes";
|
||||||
license = lib.licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
homepage = "https://yoda.hepforge.org";
|
homepage = "https://yoda.hepforge.org";
|
||||||
platforms = lib.platforms.unix;
|
changelog = "https://gitlab.com/hepcedar/yoda/-/blob/yoda-${version}/ChangeLog";
|
||||||
maintainers = with lib.maintainers; [ veprbl ];
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ veprbl ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user