nixpkgs/pkgs/development/python-modules/psychrolib/default.nix
2023-09-28 08:49:11 +02:00

44 lines
935 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "psychrolib";
version = "2.5.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "psychrometrics";
repo = "psychrolib";
rev = "refs/tags/${version}";
hash = "sha256-OkjoYIakF7NXluNTaJnUHk5cI5t8GnpqrbqHYwnLOts=";
};
sourceRoot = "${src.name}/src/python";
nativeBuildInputs = [
setuptools
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"psychrolib"
];
meta = with lib; {
description = "Library of psychrometric functions to calculate thermodynamic properties";
homepage = "https://github.com/psychrometrics/psychrolib";
changelog = "https://github.com/psychrometrics/psychrolib/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}