Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 497 B view raw
1{ lib, buildPythonPackage, fetchPypi, scipy }: 2 3buildPythonPackage rec { 4 pname = "iapws"; 5 version = "1.5.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 hash = "sha256-QVxbf9EF9YwAVPewAqhc1WZD6jVr/rFXQUw/jJ7kkDU="; 10 }; 11 12 propagatedBuildInputs = [ scipy ]; 13 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 }; 20}