about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hikari/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/hikari/default.nix')
-rw-r--r--pkgs/development/python-modules/hikari/default.nix41
1 files changed, 20 insertions, 21 deletions
diff --git a/pkgs/development/python-modules/hikari/default.nix b/pkgs/development/python-modules/hikari/default.nix
index e76d7780c0bfa..5b538536c9848 100644
--- a/pkgs/development/python-modules/hikari/default.nix
+++ b/pkgs/development/python-modules/hikari/default.nix
@@ -1,29 +1,30 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pytestCheckHook
-, pythonOlder
-, pythonRelaxDepsHook
-, pytest-runner
-, aiohttp
-, attrs
-, multidict
-, colorlog
-, pynacl
-, pytest-cov
-, pytest-randomly
-, pytest-asyncio
-, mock
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  pytestCheckHook,
+  pythonOlder,
+  pythonRelaxDepsHook,
+  pytest-runner,
+  aiohttp,
+  attrs,
+  multidict,
+  colorlog,
+  pynacl,
+  pytest-cov,
+  pytest-randomly,
+  pytest-asyncio,
+  mock,
 }:
 buildPythonPackage rec {
   pname = "hikari";
-  version = "2.0.0.dev124";
+  version = "2.0.0.dev125";
 
   src = fetchFromGitHub {
     owner = "hikari-py";
     repo = "hikari";
     rev = version;
-    hash = "sha256-zDgU3Ol/I3YNnwXm+aBh20KwonW746p5TObuwuWORog=";
+    hash = "sha256-qxgIYquXUWrm8bS8EamERMHOnjI2aPyK7bQieVG66uA=";
     # The git commit is part of the `hikari.__git_sha1__` original output;
     # leave that output the same in nixpkgs. Use the `.git` directory
     # to retrieve the commit SHA, and remove the directory afterwards,
@@ -36,9 +37,7 @@ buildPythonPackage rec {
     '';
   };
 
-  nativeBuildInputs = [
-    pythonRelaxDepsHook
-  ];
+  nativeBuildInputs = [ pythonRelaxDepsHook ];
 
   propagatedBuildInputs = [
     aiohttp