Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / iapws / default.nix
blob8e2e3fd07a81d633f6e3078d4c2ea8225ca2650e
1 { lib, buildPythonPackage, fetchPypi, scipy }:
3 buildPythonPackage rec {
4   pname = "iapws";
5   version = "1.5.3";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-QVxbf9EF9YwAVPewAqhc1WZD6jVr/rFXQUw/jJ7kkDU=";
11   };
13   propagatedBuildInputs = [ scipy ];
15   meta = with lib; {
16     description = "Python implementation of standard from IAPWS";
17     homepage = "https://github.com/jjgomera/iapws";
18     license = licenses.gpl3;
19     maintainers = with maintainers; [ dawidsowa ];
20   };