tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.potentials: init at 0.3.1
Fabian Affolter
4 years ago
e6feb740
10e1f32e
+60
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
potentials
default.nix
top-level
python-packages.nix
+58
pkgs/development/python-modules/potentials/default.nix
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchPypi
4
4
+
, ipywidgets
5
5
+
, cdcs
6
6
+
, bibtexparser
7
7
+
, habanero
8
8
+
, pandas
9
9
+
, requests
10
10
+
, numpy
11
11
+
, matplotlib
12
12
+
, unidecode
13
13
+
, datamodeldict
14
14
+
, xmltodict
15
15
+
, pytestCheckHook
16
16
+
, pythonOlder
17
17
+
}:
18
18
+
19
19
+
buildPythonPackage rec {
20
20
+
version = "0.3.1";
21
21
+
pname = "potentials";
22
22
+
format = "setuptools";
23
23
+
24
24
+
disabled = pythonOlder "3.7";
25
25
+
26
26
+
src = fetchPypi {
27
27
+
inherit pname version;
28
28
+
sha256 = "02l1rav5jdfsb00byxbswyhqdnjljp9y7g4ddn4mivzi7x39qa52";
29
29
+
};
30
30
+
31
31
+
propagatedBuildInputs = [
32
32
+
ipywidgets
33
33
+
cdcs
34
34
+
bibtexparser
35
35
+
habanero
36
36
+
pandas
37
37
+
requests
38
38
+
numpy
39
39
+
matplotlib
40
40
+
unidecode
41
41
+
datamodeldict
42
42
+
xmltodict
43
43
+
];
44
44
+
45
45
+
# Project has no tests
46
46
+
doCheck = false;
47
47
+
48
48
+
pythonImportsCheck = [
49
49
+
"potentials"
50
50
+
];
51
51
+
52
52
+
meta = with lib; {
53
53
+
description = "Python API database tools for accessing the NIST Interatomic Potentials Repository";
54
54
+
homepage = "https://github.com/usnistgov/potentials";
55
55
+
license = licenses.mit;
56
56
+
maintainers = with maintainers; [ fab ];
57
57
+
};
58
58
+
}
+2
pkgs/top-level/python-packages.nix
···
5918
5918
5919
5919
pot = callPackage ../development/python-modules/pot { };
5920
5920
5921
5921
+
potentials = callPackage ../development/python-modules/potentials { };
5922
5922
+
5921
5923
potr = callPackage ../development/python-modules/potr { };
5922
5924
5923
5925
power = callPackage ../development/python-modules/power { };