about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2022-09-05 15:26:20 +0200
committerGitHub <noreply@github.com>2022-09-05 15:26:20 +0200
commit268569b6d898ef5955b9272d6c69c6f507d51cad (patch)
tree53993ed749fff94633b2538a836cd1bc3c87c0ca /pkgs
parentec3b28163232e2cd66d7facf299e64e8b152bb65 (diff)
parent783f8f16c16ba47daffff2c6b92a96eb8bb5d363 (diff)
downloadnixlib-268569b6d898ef5955b9272d6c69c6f507d51cad.tar
nixlib-268569b6d898ef5955b9272d6c69c6f507d51cad.tar.gz
nixlib-268569b6d898ef5955b9272d6c69c6f507d51cad.tar.bz2
nixlib-268569b6d898ef5955b9272d6c69c6f507d51cad.tar.lz
nixlib-268569b6d898ef5955b9272d6c69c6f507d51cad.tar.xz
nixlib-268569b6d898ef5955b9272d6c69c6f507d51cad.tar.zst
nixlib-268569b6d898ef5955b9272d6c69c6f507d51cad.zip
Merge pull request #189852 from erikarvstedt/paperless-pythonpath
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/office/paperless-ngx/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/applications/office/paperless-ngx/default.nix b/pkgs/applications/office/paperless-ngx/default.nix
index a42ec844d115..1deb8e7efe6e 100644
--- a/pkgs/applications/office/paperless-ngx/default.nix
+++ b/pkgs/applications/office/paperless-ngx/default.nix
@@ -207,11 +207,7 @@ python.pkgs.pythonPackages.buildPythonApplication rec {
   '';
 
   passthru = {
-    inherit python;
-    # PYTHONPATH of all dependencies used by the package
-    pythonPath = python3.pkgs.makePythonPath propagatedBuildInputs;
-    inherit path;
-
+    inherit python path;
     tests = { inherit (nixosTests) paperless; };
   };