summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-unshare/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/python-unshare/default.nix')
-rw-r--r--pkgs/development/python-modules/python-unshare/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/python-unshare/default.nix b/pkgs/development/python-modules/python-unshare/default.nix
index 86958dfc003e..1cfe02a07e2e 100644
--- a/pkgs/development/python-modules/python-unshare/default.nix
+++ b/pkgs/development/python-modules/python-unshare/default.nix
@@ -1,6 +1,7 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
}:
buildPythonPackage {
@@ -19,10 +20,9 @@ buildPythonPackage {
meta = with lib; {
description = "Python bindings for the Linux unshare() syscall";
- homepage = "https://github.com/thetincho/python-unshare";
- license = licenses.gpl2;
- platforms = platforms.linux;
+ homepage = "https://github.com/thetincho/python-unshare";
+ license = licenses.gpl2;
+ platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
-
}