about summary refs log tree commit diff
path: root/pkgs/tools/misc/bepasty
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2018-04-01 18:33:10 +0200
committerlassulus <lassulus@lassul.us>2018-04-09 22:33:49 +0200
commit9a182f57c50e44dd84b52de0eb49d8fd27cb1ac0 (patch)
tree1e945811dea76309a136825ff916233ee7f53645 /pkgs/tools/misc/bepasty
parent5b01b0d316b65f7defac195cf360cf79f797903c (diff)
downloadnixlib-9a182f57c50e44dd84b52de0eb49d8fd27cb1ac0.tar
nixlib-9a182f57c50e44dd84b52de0eb49d8fd27cb1ac0.tar.gz
nixlib-9a182f57c50e44dd84b52de0eb49d8fd27cb1ac0.tar.bz2
nixlib-9a182f57c50e44dd84b52de0eb49d8fd27cb1ac0.tar.lz
nixlib-9a182f57c50e44dd84b52de0eb49d8fd27cb1ac0.tar.xz
nixlib-9a182f57c50e44dd84b52de0eb49d8fd27cb1ac0.tar.zst
nixlib-9a182f57c50e44dd84b52de0eb49d8fd27cb1ac0.zip
bepasty: make it a package again
this fixes running bepasty with gunicorn, which is needed for
services.bepasty
Diffstat (limited to 'pkgs/tools/misc/bepasty')
-rw-r--r--pkgs/tools/misc/bepasty/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/tools/misc/bepasty/default.nix b/pkgs/tools/misc/bepasty/default.nix
index ee2680da0066..f69f654cda3d 100644
--- a/pkgs/tools/misc/bepasty/default.nix
+++ b/pkgs/tools/misc/bepasty/default.nix
@@ -4,7 +4,10 @@
 
 with python.pkgs;
 
-buildPythonApplication rec {
+#We need to use buildPythonPackage here to get the PYTHONPATH build correctly.
+#This is needed for services.bepasty
+#https://github.com/NixOS/nixpkgs/pull/38300
+buildPythonPackage rec {
   pname = "bepasty";
   version = "0.4.0";
   name = "${pname}-${version}";