at 22.05-pre 512 B view raw
1{ lib, buildPythonPackage, fetchPypi, scipy }: 2 3buildPythonPackage rec { 4 pname = "iapws"; 5 version = "1.5.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "781285acaedff49d72c074aa308aabf7ca17f486cca490e5ed3f35526bbe4153"; 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}