python3Packages.potentials: init at 0.3.1

This commit is contained in:
Fabian Affolter 2021-11-16 17:18:30 +01:00
parent 10e1f32e5a
commit e6feb74002
2 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,58 @@
{ lib
, buildPythonPackage
, fetchPypi
, ipywidgets
, cdcs
, bibtexparser
, habanero
, pandas
, requests
, numpy
, matplotlib
, unidecode
, datamodeldict
, xmltodict
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
version = "0.3.1";
pname = "potentials";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "02l1rav5jdfsb00byxbswyhqdnjljp9y7g4ddn4mivzi7x39qa52";
};
propagatedBuildInputs = [
ipywidgets
cdcs
bibtexparser
habanero
pandas
requests
numpy
matplotlib
unidecode
datamodeldict
xmltodict
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"potentials"
];
meta = with lib; {
description = "Python API database tools for accessing the NIST Interatomic Potentials Repository";
homepage = "https://github.com/usnistgov/potentials";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -5918,6 +5918,8 @@ in {
pot = callPackage ../development/python-modules/pot { };
potentials = callPackage ../development/python-modules/potentials { };
potr = callPackage ../development/python-modules/potr { };
power = callPackage ../development/python-modules/power { };