summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/psychrolib/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/psychrolib/default.nix')
-rw-r--r--pkgs/development/python-modules/psychrolib/default.nix21
1 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/psychrolib/default.nix b/pkgs/development/python-modules/psychrolib/default.nix
index cda0523b9698..144d65b3f578 100644
--- a/pkgs/development/python-modules/psychrolib/default.nix
+++ b/pkgs/development/python-modules/psychrolib/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, setuptools
-, pytestCheckHook
-, pythonOlder
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ setuptools,
+ pytestCheckHook,
+ pythonOlder,
}:
buildPythonPackage rec {
@@ -22,16 +23,12 @@ buildPythonPackage rec {
sourceRoot = "${src.name}/src/python";
- nativeBuildInputs = [
- setuptools
- ];
+ nativeBuildInputs = [ setuptools ];
# Module has no tests
doCheck = false;
- pythonImportsCheck = [
- "psychrolib"
- ];
+ pythonImportsCheck = [ "psychrolib" ];
meta = with lib; {
description = "Library of psychrometric functions to calculate thermodynamic properties";