depot/third_party/nixpkgs/pkgs/development/python-modules/geometric/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

33 lines
680 B
Nix

{ buildPythonPackage, lib, fetchFromGitHub
, networkx, numpy, scipy, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "geometric";
version = "0.9.7.2";
src = fetchFromGitHub {
owner = "leeping";
repo = "geomeTRIC";
rev = version;
hash = "sha256-QFpfY6tWqcda6AJT17YBEuwu/4DYPbIMJU1c9/gHjaA=";
};
propagatedBuildInputs = [
networkx
numpy
scipy
six
];
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Geometry optimization code for molecular structures";
homepage = "https://github.com/leeping/geomeTRIC";
license = [ licenses.bsd3 ];
maintainers = [ maintainers.markuskowa ];
};
}