Merge pull request #157841 from markuskowa/add-geometric
python3Packages.geometric: init at 0.9.7.2
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -3191,6 +3191,8 @@ in {
|
||||
|
||||
geomet = callPackage ../development/python-modules/geomet { };
|
||||
|
||||
geometric = callPackage ../development/python-modules/geometric { };
|
||||
|
||||
geopandas = callPackage ../development/python-modules/geopandas { };
|
||||
|
||||
geopy = callPackage ../development/python-modules/geopy { };
|
||||
|
||||
Reference in New Issue
Block a user