summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/bundlewrap-pass/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/bundlewrap-pass/default.nix')
-rw-r--r--pkgs/development/python-modules/bundlewrap-pass/default.nix22
1 files changed, 12 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/bundlewrap-pass/default.nix b/pkgs/development/python-modules/bundlewrap-pass/default.nix
index 0b8068a14948..1a6101c10a72 100644
--- a/pkgs/development/python-modules/bundlewrap-pass/default.nix
+++ b/pkgs/development/python-modules/bundlewrap-pass/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, setuptools
-, bundlewrap
-, pass
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ setuptools,
+ bundlewrap,
+ pass,
}:
buildPythonPackage rec {
@@ -18,14 +19,15 @@ buildPythonPackage rec {
nativeBuildInputs = [ setuptools ];
- propagatedBuildInputs = [ bundlewrap pass ];
+ propagatedBuildInputs = [
+ bundlewrap
+ pass
+ ];
# upstream has no checks
doCheck = false;
- pythonImportsCheck = [
- "bwpass"
- ];
+ pythonImportsCheck = [ "bwpass" ];
meta = with lib; {
homepage = "https://pypi.org/project/bundlewrap-pass";