summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/meshio/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/meshio/default.nix')
-rw-r--r--pkgs/development/python-modules/meshio/default.nix27
1 files changed, 13 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/meshio/default.nix b/pkgs/development/python-modules/meshio/default.nix
index f0c170202683..91346b9c6b18 100644
--- a/pkgs/development/python-modules/meshio/default.nix
+++ b/pkgs/development/python-modules/meshio/default.nix
@@ -1,13 +1,14 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, numpy
-, netcdf4
-, h5py
-, exdown
-, pytestCheckHook
-, rich
-, setuptools
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ numpy,
+ netcdf4,
+ h5py,
+ exdown,
+ pytestCheckHook,
+ rich,
+ setuptools,
}:
buildPythonPackage rec {
@@ -20,9 +21,7 @@ buildPythonPackage rec {
hash = "sha256-8h8Bq9nym6BuoRkwSz055hBCHP6Tud0jNig0kZ+HWG0=";
};
- nativeBuildInputs = [
- setuptools
- ];
+ nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
numpy
@@ -36,7 +35,7 @@ buildPythonPackage rec {
pytestCheckHook
];
- pythonImportsCheck = ["meshio"];
+ pythonImportsCheck = [ "meshio" ];
meta = with lib; {
homepage = "https://github.com/nschloe/meshio";