Unverified Commit d693f304 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

python311Packages.pypiserver: add missing deps, unbreak (#354480)

parents bce559e7 4036a404
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -13,6 +13,8 @@
  watchdog,
  webtest,
  wheel,
  build,
  importlib-resources,
}:

buildPythonPackage rec {
@@ -38,7 +40,7 @@ buildPythonPackage rec {
  dependencies = [
    distutils
    pip
  ];
  ] ++ lib.optionals (pythonOlder "3.12") [ importlib-resources ];

  optional-dependencies = {
    passlib = [ passlib ];
@@ -51,6 +53,7 @@ buildPythonPackage rec {
    setuptools
    twine
    webtest
    build
  ] ++ lib.flatten (builtins.attrValues optional-dependencies);

  __darwinAllowLocalNetworking = true;