aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/iapws/default.nix
blob: 76330af43eeb4797d7853a5b5c01d84782907a2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildPythonPackage, fetchPypi, scipy }:

buildPythonPackage rec {
  pname = "iapws";
  version = "1.5.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "781285acaedff49d72c074aa308aabf7ca17f486cca490e5ed3f35526bbe4153";
  };

  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 ];
  };
}