11 buildPythonPackage rec {
12 pname = "polarizationsolver";
13 version = "unstable-2021-11-02";
15 src = fetchFromGitLab {
18 rev = "00424ac4d1862257a55e4b16543f63ace3fe8c22";
19 hash = "sha256-LACf8Xw+o/uJ3+PD/DE/o7nwKY7fv3NyYbpjCrTTnBU=";
22 # setup.py states version="dev", which is not a valid version string for setuptools
23 # There has never been a formal stable release, so let's say 0.0 here.
25 substituteInPlace ./setup.py --replace 'version="dev",' 'version="0.0",'
28 propagatedBuildInputs = [
34 nativeCheckInputs = [ fields ];
36 pythonImportsCheck = [ "polarizationsolver" ];
39 description = "Multipole moment solver for quantum chemistry and polarisable embedding";
40 homepage = "https://gitlab.com/reinholdt/polarizationsolver";
41 license = licenses.gpl3Plus;
42 maintainers = [ maintainers.sheepforce ];