46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{ stdenv, fetchurl, python, root, makeWrapper, zlib, withRootSupport ? false }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yoda";
|
|
version = "1.8.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.hepforge.org/archive/yoda/YODA-${version}.tar.bz2";
|
|
sha256 = "1z9jmabsaddhs003zzq73fpq2absd12rnc2sa5qn45zwf62nnbjc";
|
|
};
|
|
|
|
nativeBuildInputs = with python.pkgs; [ cython makeWrapper ];
|
|
buildInputs = [ python ]
|
|
++ (with python.pkgs; [ numpy matplotlib ])
|
|
++ stdenv.lib.optional withRootSupport root;
|
|
propagatedBuildInputs = [ zlib ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postPatch = ''
|
|
touch pyext/yoda/*.{pyx,pxd}
|
|
patchShebangs .
|
|
'';
|
|
|
|
postInstall = ''
|
|
for prog in "$out"/bin/*; do
|
|
wrapProgram "$prog" --set PYTHONPATH $PYTHONPATH:$(toPythonPath "$out")
|
|
done
|
|
'';
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
doInstallCheck = true;
|
|
installCheckTarget = "check";
|
|
|
|
meta = {
|
|
description = "Provides small set of data analysis (specifically histogramming) classes";
|
|
license = stdenv.lib.licenses.gpl3;
|
|
homepage = "https://yoda.hepforge.org";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with stdenv.lib.maintainers; [ veprbl ];
|
|
# https://gitlab.com/hepcedar/yoda/-/issues/24
|
|
broken = withRootSupport;
|
|
};
|
|
}
|