depot/third_party/nixpkgs/pkgs/development/python-modules/iapws/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

26 lines
531 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
scipy,
}:
buildPythonPackage rec {
pname = "iapws";
version = "1.5.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-nw+qOaln12/F5flfYdki4TVFMZLgK/h10HJC8T1uqlU=";
};
propagatedBuildInputs = [ scipy ];
meta = with lib; {
description = "Python implementation of standard from IAPWS";
homepage = "https://github.com/jjgomera/iapws";
license = licenses.gpl3;
maintainers = with maintainers; [ dawidsowa ];
};
}