pythonPackages.periodictable: init at 1.5.0
This package is a required dependency of SasView, which will be added in a later commit.
This commit is contained in:
parent
48608f3e16
commit
e1edb55792
|
@ -3015,6 +3015,11 @@
|
||||||
github = "rongcuid";
|
github = "rongcuid";
|
||||||
name = "Rongcui Dong";
|
name = "Rongcui Dong";
|
||||||
};
|
};
|
||||||
|
rprospero = {
|
||||||
|
email = "rprospero+nix@gmail.com";
|
||||||
|
github = "rprospero";
|
||||||
|
name = "Adam Washington";
|
||||||
|
};
|
||||||
rszibele = {
|
rszibele = {
|
||||||
email = "richard@szibele.com";
|
email = "richard@szibele.com";
|
||||||
github = "rszibele";
|
github = "rszibele";
|
||||||
|
|
|
@ -12276,6 +12276,26 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
periodictable = buildPythonPackage rec{
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "periodictable";
|
||||||
|
version = "1.5.0";
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self; [numpy pyparsing];
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1cjk6aqcz41nxm4fpriz01vqdafd6g57cjk0wh1iklk5cx6c085h";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.reflectometry.org/danse/software.html;
|
||||||
|
description = "an extensible periodic table of the elements prepopulated with data important to neutron and x-ray scattering experiments";
|
||||||
|
license = licenses.publicDomain;
|
||||||
|
maintainers = with maintainers; [ rprospero ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
pg8000 = buildPythonPackage rec {
|
pg8000 = buildPythonPackage rec {
|
||||||
name = "pg8000-1.10.1";
|
name = "pg8000-1.10.1";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue