2020-05-20 22:29:34 +03:00
|
|
|
{ stdenv, fetchurl, python, root, makeWrapper, zlib, withRootSupport ? false }:
|
2016-06-11 22:31:32 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "yoda";
|
2020-11-29 16:40:07 +03:00
|
|
|
version = "1.8.5";
|
2016-06-11 22:31:32 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 21:43:35 +03:00
|
|
|
url = "https://www.hepforge.org/archive/yoda/YODA-${version}.tar.bz2";
|
2020-11-29 16:40:07 +03:00
|
|
|
sha256 = "1z9jmabsaddhs003zzq73fpq2absd12rnc2sa5qn45zwf62nnbjc";
|
2016-06-11 22:31:32 +03:00
|
|
|
};
|
|
|
|
|
2020-01-13 23:46:33 +03:00
|
|
|
nativeBuildInputs = with python.pkgs; [ cython makeWrapper ];
|
|
|
|
buildInputs = [ python ]
|
|
|
|
++ (with python.pkgs; [ numpy matplotlib ])
|
2017-04-03 10:48:22 +03:00
|
|
|
++ stdenv.lib.optional withRootSupport root;
|
2017-12-24 02:12:34 +03:00
|
|
|
propagatedBuildInputs = [ zlib ];
|
2016-06-11 22:31:32 +03:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-01-13 23:46:33 +03:00
|
|
|
postPatch = ''
|
|
|
|
touch pyext/yoda/*.{pyx,pxd}
|
2020-05-20 22:29:34 +03:00
|
|
|
patchShebangs .
|
2020-01-13 23:46:33 +03:00
|
|
|
'';
|
|
|
|
|
2016-06-11 22:31:32 +03:00
|
|
|
postInstall = ''
|
|
|
|
for prog in "$out"/bin/*; do
|
|
|
|
wrapProgram "$prog" --set PYTHONPATH $PYTHONPATH:$(toPythonPath "$out")
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2018-05-29 18:22:48 +03:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2020-05-20 22:29:34 +03:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckTarget = "check";
|
|
|
|
|
2016-06-11 22:31:32 +03:00
|
|
|
meta = {
|
|
|
|
description = "Provides small set of data analysis (specifically histogramming) classes";
|
2018-11-03 19:27:19 +03:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://yoda.hepforge.org";
|
2016-06-11 22:31:32 +03:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-10-22 13:05:23 +03:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ veprbl ];
|
2020-12-23 06:40:25 +03:00
|
|
|
# https://gitlab.com/hepcedar/yoda/-/issues/24
|
|
|
|
broken = withRootSupport;
|
2016-06-11 22:31:32 +03:00
|
|
|
};
|
|
|
|
}
|