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:
Adam Washington 2018-03-09 11:53:12 +00:00
parent 48608f3e16
commit e1edb55792
No known key found for this signature in database
GPG key ID: 0D2B93AB0C87BAF1
2 changed files with 25 additions and 0 deletions

View file

@ -3015,6 +3015,11 @@
github = "rongcuid";
name = "Rongcui Dong";
};
rprospero = {
email = "rprospero+nix@gmail.com";
github = "rprospero";
name = "Adam Washington";
};
rszibele = {
email = "richard@szibele.com";
github = "rszibele";

View file

@ -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 {
name = "pg8000-1.10.1";