summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/blinker/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/blinker/default.nix')
-rw-r--r--pkgs/development/python-modules/blinker/default.nix25
1 files changed, 11 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/blinker/default.nix b/pkgs/development/python-modules/blinker/default.nix
index 2e5707d15389..3c3556cc32f6 100644
--- a/pkgs/development/python-modules/blinker/default.nix
+++ b/pkgs/development/python-modules/blinker/default.nix
@@ -1,13 +1,14 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
-# build-system
-, flit-core
+ # build-system
+ flit-core,
-# tests
-, pytestCheckHook
-, pytest-asyncio
+ # tests
+ pytestCheckHook,
+ pytest-asyncio,
}:
buildPythonPackage rec {
@@ -20,13 +21,9 @@ buildPythonPackage rec {
hash = "sha256-5oIP9vpOTR2OJ0fCKDdJw/VH5P7hErmFVc3NrjKZYYI=";
};
- nativeBuildInputs = [
- flit-core
- ];
+ nativeBuildInputs = [ flit-core ];
- pythonImportsCheck = [
- "blinker"
- ];
+ pythonImportsCheck = [ "blinker" ];
nativeCheckInputs = [
pytest-asyncio