-
-
Notifications
You must be signed in to change notification settings - Fork 15.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python3.pkgs.polarizationsolver: init at 00424ac4
polarizationsolver: expose polyrizationsolver: formatting polarizationsolver: platforms polarizationsolver: platforms polarizationsolver: license polarizationsolver: remove redundant platform
- Loading branch information
1 parent
dbd7ba5
commit a6a5114
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
pkgs/development/python-modules/polarizationsolver/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ buildPythonPackage | ||
, lib | ||
, fetchFromGitLab | ||
, python | ||
, numpy | ||
, scipy | ||
, periodictable | ||
, fields | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "polarizationsolver"; | ||
version = "unstable-2021-11-02"; | ||
|
||
src = fetchFromGitLab { | ||
owner = "reinholdt"; | ||
repo = pname; | ||
rev = "00424ac4d1862257a55e4b16543f63ace3fe8c22"; | ||
sha256 = "sha256-LACf8Xw+o/uJ3+PD/DE/o7nwKY7fv3NyYbpjCrTTnBU="; | ||
}; | ||
|
||
propagatedBuildInputs = [ | ||
numpy | ||
periodictable | ||
scipy | ||
]; | ||
|
||
checkInputs = [ fields ]; | ||
|
||
pythonImportsCheck = [ "polarizationsolver" ]; | ||
|
||
meta = with lib; { | ||
description = "Multipole moment solver for quantum chemistry and polarisable embedding"; | ||
homepage = "https://gitlab.com/reinholdt/polarizationsolver"; | ||
license = licenses.gpl3Plus; | ||
maintainers = [ maintainers.sheepforce ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters