about summary refs log tree commit diff
path: root/pkgs/development/python-modules/clr-loader/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/clr-loader/default.nix')
-rw-r--r--pkgs/development/python-modules/clr-loader/default.nix34
1 files changed, 17 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/clr-loader/default.nix b/pkgs/development/python-modules/clr-loader/default.nix
index c0122a0d3d9dc..270c68e0fa2fb 100644
--- a/pkgs/development/python-modules/clr-loader/default.nix
+++ b/pkgs/development/python-modules/clr-loader/default.nix
@@ -1,13 +1,14 @@
-{ lib
-, fetchPypi
-, buildPythonPackage
-, pytestCheckHook
-, dotnetCorePackages
-, setuptools
-, setuptools-scm
-, wheel
-, buildDotnetModule
-, cffi
+{
+  lib,
+  fetchPypi,
+  buildPythonPackage,
+  pytestCheckHook,
+  dotnetCorePackages,
+  setuptools,
+  setuptools-scm,
+  wheel,
+  buildDotnetModule,
+  cffi,
 }:
 
 let
@@ -23,7 +24,10 @@ let
   # build is done in `buildPythonPackage` below.
   dotnet-build = buildDotnetModule {
     inherit pname version src;
-    projectFile = [ "netfx_loader/ClrLoader.csproj" "example/example.csproj" ];
+    projectFile = [
+      "netfx_loader/ClrLoader.csproj"
+      "example/example.csproj"
+    ];
     nugetDeps = ./deps.nix;
   };
 in
@@ -39,13 +43,9 @@ buildPythonPackage {
     dotnetCorePackages.sdk_6_0
   ];
 
-  propagatedBuildInputs = [
-    cffi
-  ];
+  propagatedBuildInputs = [ cffi ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   disabledTests = [
     # TODO: mono does not work due to https://github.com/NixOS/nixpkgs/issues/7307