1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 scipy,
6}:
7
8buildPythonPackage rec {
9 pname = "iapws";
10 version = "1.5.4";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-nw+qOaln12/F5flfYdki4TVFMZLgK/h10HJC8T1uqlU=";
16 };
17
18 propagatedBuildInputs = [ scipy ];
19
20 meta = with lib; {
21 description = "Python implementation of standard from IAPWS";
22 homepage = "https://github.com/jjgomera/iapws";
23 license = licenses.gpl3;
24 maintainers = with maintainers; [ dawidsowa ];
25 };
26}