567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
45 lines
811 B
Nix
45 lines
811 B
Nix
{
|
|
buildPythonPackage,
|
|
lib,
|
|
fetchFromGitHub,
|
|
networkx,
|
|
numpy,
|
|
scipy,
|
|
six,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "geometric";
|
|
version = "1.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "leeping";
|
|
repo = "geomeTRIC";
|
|
tag = version;
|
|
hash = "sha256-hxNzyuupktUWDzZXXJNsVoC6m/kyE1fbfY5K6LiO+x0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
networkx
|
|
numpy
|
|
scipy
|
|
six
|
|
];
|
|
|
|
preCheck = ''
|
|
export OMP_NUM_THREADS=2
|
|
'';
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = {
|
|
description = "Geometry optimization code for molecular structures";
|
|
mainProgram = "geometric-optimize";
|
|
homepage = "https://github.com/leeping/geomeTRIC";
|
|
license = [ lib.licenses.bsd3 ];
|
|
maintainers = [ lib.maintainers.markuskowa ];
|
|
};
|
|
}
|