My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/polarizationsolver/default.nix

38 lines
806 B

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