nav: init at 1.2.1 (#356071)
[NixPkgs.git] / pkgs / development / python-modules / psychrolib / default.nix
blobec8544ff2f6f428c7b3a45d91132893719de2375
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "psychrolib";
11   version = "2.5.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "psychrometrics";
18     repo = "psychrolib";
19     rev = "refs/tags/${version}";
20     hash = "sha256-OkjoYIakF7NXluNTaJnUHk5cI5t8GnpqrbqHYwnLOts=";
21   };
23   sourceRoot = "${src.name}/src/python";
25   nativeBuildInputs = [ setuptools ];
27   # Module has no tests
28   doCheck = false;
30   pythonImportsCheck = [ "psychrolib" ];
32   meta = with lib; {
33     description = "Library of psychrometric functions to calculate thermodynamic properties";
34     homepage = "https://github.com/psychrometrics/psychrolib";
35     changelog = "https://github.com/psychrometrics/psychrolib/releases/tag/${version}";
36     license = licenses.mit;
37     maintainers = with maintainers; [ fab ];
38   };