mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
pythonPackages.iapws: init at 1.4
This commit is contained in:
parent
e7d80e3e15
commit
2eeda84091
2 changed files with 22 additions and 0 deletions
20
pkgs/development/python-modules/iapws/default.nix
Normal file
20
pkgs/development/python-modules/iapws/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, scipy }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "iapws";
|
||||
version = "1.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "3d7a7a17343157dacd3f654b7f82d1974492209756c4de99332d4f6b375227e6";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -3841,6 +3841,8 @@ in {
|
|||
|
||||
httpretty = callPackage ../development/python-modules/httpretty { };
|
||||
|
||||
iapws = callPackage ../development/python-modules/iapws { };
|
||||
|
||||
icalendar = callPackage ../development/python-modules/icalendar { };
|
||||
|
||||
ics = callPackage ../development/python-modules/ics { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue