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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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-08-16 18:31:03 +01:00
version = "1.5.2";
2019-08-28 22:36:23 +01:00
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:03 +01:00
sha256 = "781285acaedff49d72c074aa308aabf7ca17f486cca490e5ed3f35526bbe4153";
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 ];
};
}