summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/opencontainers/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/opencontainers/default.nix')
-rw-r--r--pkgs/development/python-modules/opencontainers/default.nix23
1 files changed, 9 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/opencontainers/default.nix b/pkgs/development/python-modules/opencontainers/default.nix
index f60eb0dd6568..b2677b7044e4 100644
--- a/pkgs/development/python-modules/opencontainers/default.nix
+++ b/pkgs/development/python-modules/opencontainers/default.nix
@@ -1,8 +1,9 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pytestCheckHook
-, requests
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ pytestCheckHook,
+ requests,
}:
buildPythonPackage rec {
@@ -19,17 +20,11 @@ buildPythonPackage rec {
sed -i "/pytest-runner/d" setup.py
'';
- passthru.optional-dependencies.reggie = [
- requests
- ];
+ passthru.optional-dependencies.reggie = [ requests ];
- pythonImportsCheck = [
- "opencontainers"
- ];
+ pythonImportsCheck = [ "opencontainers" ];
- nativeCheckInputs = [
- pytestCheckHook
- ] ++ passthru.optional-dependencies.reggie;
+ nativeCheckInputs = [ pytestCheckHook ] ++ passthru.optional-dependencies.reggie;
__darwinAllowLocalNetworking = true;