about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pylxd/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pylxd/default.nix')
-rw-r--r--pkgs/development/python-modules/pylxd/default.nix43
1 files changed, 19 insertions, 24 deletions
diff --git a/pkgs/development/python-modules/pylxd/default.nix b/pkgs/development/python-modules/pylxd/default.nix
index 3d94d0db35996..78c3cba291c48 100644
--- a/pkgs/development/python-modules/pylxd/default.nix
+++ b/pkgs/development/python-modules/pylxd/default.nix
@@ -1,19 +1,19 @@
-{ lib
-, buildPythonPackage
-, cryptography
-, ddt
-, fetchFromGitHub
-, mock-services
-, pytestCheckHook
-, python-dateutil
-, pythonOlder
-, requests
-, urllib3
-, pythonRelaxDepsHook
-, requests-toolbelt
-, requests-unixsocket
-, setuptools
-, ws4py
+{
+  lib,
+  buildPythonPackage,
+  cryptography,
+  ddt,
+  fetchFromGitHub,
+  mock-services,
+  pytestCheckHook,
+  python-dateutil,
+  pythonOlder,
+  requests,
+  urllib3,
+  requests-toolbelt,
+  requests-unixsocket,
+  setuptools,
+  ws4py,
 }:
 
 buildPythonPackage rec {
@@ -30,12 +30,9 @@ buildPythonPackage rec {
     hash = "sha256-Q4GMz7HFpJNPYlYgLhE0a7mVCwNpdbw4XVcUGQ2gUJ0=";
   };
 
-  pythonRelaxDeps = [
-    "urllib3"
-  ];
+  pythonRelaxDeps = [ "urllib3" ];
 
   nativeBuildInputs = [
-    pythonRelaxDepsHook
     setuptools
   ];
 
@@ -60,15 +57,13 @@ buildPythonPackage rec {
     "migration"
   ];
 
-  pythonImportsCheck = [
-    "pylxd"
-  ];
+  pythonImportsCheck = [ "pylxd" ];
 
   meta = with lib; {
     description = "Library for interacting with the LXD REST API";
     homepage = "https://pylxd.readthedocs.io/";
     changelog = "https://github.com/canonical/pylxd/releases/tag/${version}";
     license = licenses.asl20;
-    maintainers = with maintainers; [ ];
+    maintainers = [ ];
   };
 }