diff options
author | lassulus <lassulus@lassul.us> | 2019-05-05 10:40:24 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-05-05 10:40:24 +0200 |
commit | 9da52b378d55113158702e010b3725f5b605a85d (patch) | |
tree | 0ecdca4cb64f170b0da6ff9a88608c2cfcf4dc40 /makefu/5pkgs | |
parent | 595574d4338e12c53b5f4c8c9e2c087bc668b7b5 (diff) | |
parent | 98f0d7fef497037f82711cc62db61008e26280b2 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/5pkgs')
-rw-r--r-- | makefu/5pkgs/prison-break/default.nix | 20 | ||||
-rw-r--r-- | makefu/5pkgs/prison-break/straight-plugin.nix | 22 |
2 files changed, 0 insertions, 42 deletions
diff --git a/makefu/5pkgs/prison-break/default.nix b/makefu/5pkgs/prison-break/default.nix deleted file mode 100644 index 051a46184..000000000 --- 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 ]; -} diff --git a/makefu/5pkgs/prison-break/straight-plugin.nix b/makefu/5pkgs/prison-break/straight-plugin.nix deleted file mode 100644 index 606c60b5d..000000000 --- a/makefu/5pkgs/prison-break/straight-plugin.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ lib -, buildPythonPackage -, fetchPypi -}: - -buildPythonPackage rec { - pname = "straight-plugin"; - version = "1.5.0"; - - src = fetchPypi { - pname = "straight.plugin"; - inherit version; - sha256 = "818a7641068932ed6436d0af0a3bb77bbbde29df0a7142c8bd1a249e7c2f0d38"; - }; - - meta = with lib; { - description = "A simple namespaced plugin facility"; - homepage = https://github.com/ironfroggy/straight.plugin; - license = licenses.mit; - maintainers = [ maintainers.makefu ]; - }; -} |