summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/prison-break/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/5pkgs/prison-break/default.nix')
-rw-r--r--makefu/5pkgs/prison-break/default.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/makefu/5pkgs/prison-break/default.nix b/makefu/5pkgs/prison-break/default.nix
deleted file mode 100644
index 051a4618..00000000
--- a/makefu/5pkgs/prison-break/default.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{pkgs, fetchFromGitHub}:
-with pkgs.python3.pkgs;
-
-buildPythonPackage rec {
- pname = "prison-break";
- version = "1.0.0";
- src = fetchFromGitHub {
- owner = "makefu";
- repo = pname;
- rev = "1.0.0";
- sha256 = "0ab42z6qr42vz4fc077irn9ykrrylagx1dzlw8dqcanf49dxd961";
- };
- propagatedBuildInputs = [
- docopt
- requests
- beautifulsoup4
- (callPackage ./straight-plugin.nix {})
- ];
- checkInputs = [ black ];
-}