686ce24904
GitOrigin-RevId: ac1f5b72a9e95873d1de0233fddcb56f99884b37
50 lines
874 B
Nix
50 lines
874 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, hyperopt
|
|
, keras
|
|
, nnpdf
|
|
, psutil
|
|
, tensorflow
|
|
, validphys2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "n3fit";
|
|
version = "4.0";
|
|
format = "setuptools";
|
|
|
|
inherit (nnpdf) src;
|
|
|
|
prePatch = ''
|
|
cd n3fit
|
|
'';
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/n3fit/version.py \
|
|
--replace '= __give_git()' '= "'$version'"'
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
hyperopt
|
|
keras
|
|
psutil
|
|
tensorflow
|
|
validphys2
|
|
];
|
|
|
|
postInstall = ''
|
|
for prog in "$out"/bin/*; do
|
|
wrapProgram "$prog" --set PYTHONPATH "$PYTHONPATH:$(toPythonPath "$out")"
|
|
done
|
|
'';
|
|
|
|
doCheck = false; # no tests
|
|
pythonImportsCheck = [ "n3fit" ];
|
|
|
|
meta = with lib; {
|
|
description = "NNPDF fitting framework";
|
|
homepage = "https://docs.nnpdf.science";
|
|
inherit (nnpdf.meta) license;
|
|
maintainers = with maintainers; [ veprbl ];
|
|
};
|
|
}
|