summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/justnimbus/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/justnimbus/default.nix')
-rw-r--r--pkgs/development/python-modules/justnimbus/default.nix26
1 files changed, 10 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/justnimbus/default.nix b/pkgs/development/python-modules/justnimbus/default.nix
index 013e4670aa8f..08a7592b29e2 100644
--- a/pkgs/development/python-modules/justnimbus/default.nix
+++ b/pkgs/development/python-modules/justnimbus/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, poetry-core
-, pythonOlder
-, requests
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ poetry-core,
+ pythonOlder,
+ requests,
}:
buildPythonPackage rec {
@@ -20,20 +21,14 @@ buildPythonPackage rec {
hash = "sha256-JO8T0JItkkNHxlnDKOO8kM9KSzT7QML4sszPymgXSBA=";
};
- nativeBuildInputs = [
- poetry-core
- ];
+ nativeBuildInputs = [ poetry-core ];
- propagatedBuildInputs = [
- requests
- ];
+ propagatedBuildInputs = [ requests ];
# Module has no tests
doCheck = false;
- pythonImportsCheck = [
- "justnimbus"
- ];
+ pythonImportsCheck = [ "justnimbus" ];
meta = with lib; {
description = "Library for the JustNimbus API";
@@ -43,4 +38,3 @@ buildPythonPackage rec {
maintainers = with maintainers; [ fab ];
};
}
-