blob: b146f948d7bd751e5a1afb88b68f9853ae13a74b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
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 = {
description = "Python implementation of standard from IAPWS";
homepage = "https://github.com/jjgomera/iapws";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ dawidsowa ];
};
}
|