about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/seccomp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/seccomp/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/seccomp/default.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/seccomp/default.nix b/nixpkgs/pkgs/development/python-modules/seccomp/default.nix
index 3257722b1782..2e8830277b94 100644
--- a/nixpkgs/pkgs/development/python-modules/seccomp/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/seccomp/default.nix
@@ -1,11 +1,14 @@
-{ buildPythonPackage, lib
-, cython, libseccomp
+{
+  buildPythonPackage,
+  lib,
+  cython,
+  libseccomp,
 }:
 
 buildPythonPackage rec {
-  pname   = "libseccomp";
+  pname = "libseccomp";
   version = libseccomp.version;
-  src     = libseccomp.pythonsrc;
+  src = libseccomp.pythonsrc;
 
   VERSION_RELEASE = version; # used by build system
 
@@ -23,7 +26,7 @@ buildPythonPackage rec {
 
   meta = with lib; {
     description = "Python bindings for libseccomp";
-    license     = with licenses; [ lgpl21 ];
+    license = with licenses; [ lgpl21 ];
     maintainers = with maintainers; [ thoughtpolice ];
   };
 }