mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-10 15:23:43 +00:00
27 lines
529 B
Nix
27 lines
529 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
scipy,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "iapws";
|
|
version = "1.5.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-yG4eFxVRh3/pzrA+5BXkpJBtLlJpj/nVZWeEYJc5300=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ scipy ];
|
|
|
|
meta = {
|
|
description = "Python implementation of standard from IAPWS";
|
|
homepage = "https://github.com/jjgomera/iapws";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [ dawidsowa ];
|
|
};
|
|
}
|