Files
2026-04-01 11:04:22 +00:00

27 lines
529 B
Nix

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