Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / iapws / default.nix
blob33c3b5073fd75fec7a838571e3e7f7365a8ab474
1 { lib, buildPythonPackage, fetchPypi, scipy }:
3 buildPythonPackage rec {
4   pname = "iapws";
5   version = "1.5.3";
7   src = fetchPypi {
8     inherit pname version;
9     hash = "sha256-QVxbf9EF9YwAVPewAqhc1WZD6jVr/rFXQUw/jJ7kkDU=";
10   };
12   propagatedBuildInputs = [ scipy ];
14   meta = with lib; {
15     description = "Python implementation of standard from IAPWS";
16     homepage = "https://github.com/jjgomera/iapws";
17     license = licenses.gpl3;
18     maintainers = with maintainers; [ dawidsowa ];
19   };