nixpkgs/pkgs/development/python-modules/qcelemental/default.nix
Phillip Seeber 51f4d2d2cd python3.pkgs.qcelemental: 0.23.0 -> 0.24.0
python3.pkgs.qcelemental: whitespace


whitespace


whitespace


qcelemental: checkPhase
2021-11-22 16:44:28 +01:00

36 lines
713 B
Nix

{ buildPythonPackage, lib, fetchPypi
, networkx
, numpy
, pint
, pydantic
, pytestCheckHook
} :
buildPythonPackage rec {
pname = "qcelemental";
version = "0.24.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-XcsR89tu26EG5AcXqmndkESLGWZ8eKmTkjaLziosawE=";
};
propagatedBuildInputs = [
numpy
pydantic
pint
networkx
];
checkInputs = [ pytestCheckHook ];
doCheck = true;
meta = with lib; {
description = "Periodic table, physical constants, and molecule parsing for quantum chemistry";
homepage = "http://docs.qcarchive.molssi.org/projects/qcelemental/en/latest/";
license = licenses.bsd3;
maintainers = [ maintainers.sheepforce ];
};
}