2020-04-24 23:36:52 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, scipy }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "iapws";
|
2022-09-30 11:47:45 +00:00
|
|
|
version = "1.5.3";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-QVxbf9EF9YwAVPewAqhc1WZD6jVr/rFXQUw/jJ7kkDU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|