nixpkgs/pkgs/development/python-modules/geometric/default.nix
2022-11-14 09:21:02 +01:00

47 lines
781 B
Nix

{ buildPythonPackage
, lib
, fetchFromGitHub
, networkx
, numpy
, scipy
, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "geometric";
version = "1.0";
src = fetchFromGitHub {
owner = "leeping";
repo = "geomeTRIC";
rev = version;
hash = "sha256-y8dh4vZ/d1KL1EpDrle8CH/KIDMCKKZdAyJVgUFjx/o=";
};
patches = [
./ase-is-optional.patch
];
propagatedBuildInputs = [
networkx
numpy
scipy
six
];
preCheck = ''
export OMP_NUM_THREADS=2
'';
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Geometry optimization code for molecular structures";
homepage = "https://github.com/leeping/geomeTRIC";
license = [ licenses.bsd3 ];
maintainers = [ maintainers.markuskowa ];
};
}