summary refs log tree commit diff
path: root/pkgs/development/python-modules/periodictable/default.nix
blob: f2d484bbfa45d461cdb85034b32c0022b2642b05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{lib, fetchPypi, buildPythonPackage, numpy, pyparsing}:

buildPythonPackage rec{
  pname = "periodictable";
  version = "1.5.1";

  propagatedBuildInputs = [numpy pyparsing];

  src = fetchPypi {
    inherit pname version;
    sha256 = "0qd7rjhlnb2xxi7rhpidh9pabg2m4rq6zhdcsyiymni8mgjm8dfg";
  };

  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 ];
  };
}