nixpkgs/pkgs/development/python-modules/iapws/default.nix

21 lines
512 B
Nix
Raw Normal View History

2019-08-28 22:36:23 +01:00
{ lib, buildPythonPackage, fetchPypi, scipy }:
buildPythonPackage rec {
pname = "iapws";
2020-05-09 11:01:50 +01:00
version = "1.4.1";
2019-08-28 22:36:23 +01:00
src = fetchPypi {
inherit pname version;
2020-05-09 11:01:50 +01:00
sha256 = "d65c813bb6b100a8d1ed79e00148832a0321b3063e9632a990344890acb02493";
2019-08-28 22:36:23 +01: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 ];
};
}