nixpkgs/pkgs/development/python-modules/periodictable/default.nix

23 lines
713 B
Nix
Raw Normal View History

{lib, fetchPypi, buildPythonPackage, numpy, pyparsing, pytestcov, pytestCheckHook }:
2018-03-22 17:44:27 +00:00
buildPythonPackage rec {
2018-03-22 17:44:27 +00:00
pname = "periodictable";
version = "1.5.3";
2018-03-22 17:44:27 +00:00
propagatedBuildInputs = [numpy pyparsing];
src = fetchPypi {
inherit pname version;
sha256 = "1d09c359468e2de74b43fc3a7dcb0d3d71e0ff53adb85995215d8d7796451af6";
2018-03-22 17:44:27 +00:00
};
checkInputs = [ pytestcov pytestCheckHook ];
2018-03-22 17:44:27 +00:00
meta = {
homepage = "https://www.reflectometry.org/danse/software.html";
2018-03-22 17:44:27 +00:00
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 ];
};
}