about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pysnmpcrypto/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pysnmpcrypto/default.nix')
-rw-r--r--pkgs/development/python-modules/pysnmpcrypto/default.nix33
1 files changed, 14 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/pysnmpcrypto/default.nix b/pkgs/development/python-modules/pysnmpcrypto/default.nix
index ffeb9dddfbd8b..4261815d5741b 100644
--- a/pkgs/development/python-modules/pysnmpcrypto/default.nix
+++ b/pkgs/development/python-modules/pysnmpcrypto/default.nix
@@ -1,16 +1,17 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
 
-# build-system
-, setuptools
+  # build-system
+  setuptools,
 
-# dependencies
-, cryptography
-, pycryptodomex
+  # dependencies
+  cryptography,
+  pycryptodomex,
 
-# tests
-, pytestCheckHook
+  # tests
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -30,22 +31,16 @@ buildPythonPackage rec {
       "observed_version = [36, 2, 0]"
   '';
 
-  nativeBuildInputs = [
-    setuptools
-  ];
+  nativeBuildInputs = [ setuptools ];
 
   propagatedBuildInputs = [
     cryptography
     pycryptodomex
   ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
-  pythonImportsCheck = [
-    "pysnmpcrypto"
-  ];
+  pythonImportsCheck = [ "pysnmpcrypto" ];
 
   meta = with lib; {
     description = "Strong crypto support for Python SNMP library";