Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{lib, fetchPypi, buildPythonPackage, numpy, pyparsing}: 2 3buildPythonPackage rec{ 4 pname = "periodictable"; 5 version = "1.5.0"; 6 7 propagatedBuildInputs = [numpy pyparsing]; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "1cjk6aqcz41nxm4fpriz01vqdafd6g57cjk0wh1iklk5cx6c085h"; 12 }; 13 14 meta = { 15 homepage = http://www.reflectometry.org/danse/software.html; 16 description = "an extensible periodic table of the elements prepopulated with data important to neutron and x-ray scattering experiments"; 17 license = lib.licenses.publicDomain; 18 maintainers = with lib.maintainers; [ rprospero ]; 19 }; 20}