mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
0215034f25
when they already rely on SRI hashes.
21 lines
497 B
Nix
21 lines
497 B
Nix
{ lib, buildPythonPackage, fetchPypi, scipy }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "iapws";
|
|
version = "1.5.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-QVxbf9EF9YwAVPewAqhc1WZD6jVr/rFXQUw/jJ7kkDU=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|