diff options
author | makefu <github@syntax-fehler.de> | 2019-05-14 09:18:08 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2019-05-14 09:18:26 +0200 |
commit | 135dc5297ab71045a1f58e053c4584f694988146 (patch) | |
tree | b5b0479319e024f8e1017ddcdedbf141441ff374 /makefu/5pkgs | |
parent | b65e9c07628aab89478ca634ae682ea7d07d338c (diff) |
ma pkgs.prison-break: move back to own namespace, use nur.repos.makefu.prison-break for krebs
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, 42 insertions, 0 deletions
diff --git a/makefu/5pkgs/prison-break/default.nix b/makefu/5pkgs/prison-break/default.nix new file mode 100644 index 000000000..672e0b3a0 --- /dev/null +++ b/makefu/5pkgs/prison-break/default.nix @@ -0,0 +1,20 @@ +{pkgs, fetchFromGitHub}: +with pkgs.python3.pkgs; + +buildPythonPackage rec { + pname = "prison-break"; + version = "1.2.0"; + src = fetchFromGitHub { + owner = "makefu"; + repo = pname; + rev = version; + sha256 = "07wy6f06vj9s131c16gw1xl1jf9gq5xiqia8awfb26s99gxlv7l9"; + }; + 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 new file mode 100644 index 000000000..606c60b5d --- /dev/null +++ b/makefu/5pkgs/prison-break/straight-plugin.nix @@ -0,0 +1,22 @@ +{ 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 ]; + }; +} |