Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 20 lines 623 B view raw
1{lib, fetchPypi, buildPythonPackage, numpy, pyparsing}: 2 3buildPythonPackage rec { 4 pname = "periodictable"; 5 version = "1.5.2"; 6 7 propagatedBuildInputs = [numpy pyparsing]; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "1lx03xirh3hcrzkwrz91dmdzcj01bykq59hccd83ai901jzqmshz"; 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}