mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
qcelemental: init at 0.20.0
qcelemental: directory name qcelemental: remove cacert, 0.19.0 -> 0.20.0
This commit is contained in:
parent
44595a679b
commit
ab484473ae
2 changed files with 28 additions and 0 deletions
26
pkgs/development/python-modules/qcelemental/default.nix
Normal file
26
pkgs/development/python-modules/qcelemental/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ buildPythonPackage, lib, fetchPypi, numpy, pydantic, pint,
|
||||
networkx, pytestrunner, pytestcov, pytest
|
||||
} :
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "qcelemental";
|
||||
version = "0.20.0";
|
||||
|
||||
checkInputs = [ pytestrunner pytestcov pytest ];
|
||||
propagatedBuildInputs = [ numpy pydantic pint networkx ];
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "141vw36fmacj897q26kq2bl9l0d23lyqjfry6q46aa9087dcs7ni";
|
||||
};
|
||||
|
||||
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;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.sheepforce ];
|
||||
};
|
||||
}
|
|
@ -7007,6 +7007,8 @@ in {
|
|||
|
||||
qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09
|
||||
|
||||
qcelemental = callPackage ../development/python-modules/qcelemental { };
|
||||
|
||||
qdarkstyle = callPackage ../development/python-modules/qdarkstyle { };
|
||||
|
||||
qdldl = callPackage ../development/python-modules/qdldl { };
|
||||
|
|
Loading…
Reference in a new issue