2018-03-22 17:44:27 +00:00
|
|
|
{lib, fetchPypi, buildPythonPackage, numpy, pyparsing}:
|
|
|
|
|
|
|
|
buildPythonPackage rec{
|
|
|
|
pname = "periodictable";
|
2019-10-08 12:23:01 +00:00
|
|
|
version = "1.5.1";
|
2018-03-22 17:44:27 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [numpy pyparsing];
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-08 12:23:01 +00:00
|
|
|
sha256 = "0qd7rjhlnb2xxi7rhpidh9pabg2m4rq6zhdcsyiymni8mgjm8dfg";
|
2018-03-22 17:44:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 = lib.licenses.publicDomain;
|
|
|
|
maintainers = with lib.maintainers; [ rprospero ];
|
|
|
|
};
|
|
|
|
}
|