Files
nixpkgs/pkgs/development/python-modules/geometric/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
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>
2025-12-10 18:09:49 +01:00

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 ];
};
}