diff options
author | makefu <github@syntax-fehler.de> | 2015-08-31 14:22:21 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2015-08-31 14:22:21 +0200 |
commit | 0f50750e254c22153cb7024e79181661f98d1b33 (patch) | |
tree | 0108ace486835db113cc5fa0fc6d491050117b25 /krebs/5pkgs/Reaktor | |
parent | cbac1a75959c96d37f6c24a38efce19e88dadca2 (diff) |
Reaktor: initial commit at 0.3.5
Diffstat (limited to 'krebs/5pkgs/Reaktor')
-rw-r--r-- | krebs/5pkgs/Reaktor/default.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/krebs/5pkgs/Reaktor/default.nix b/krebs/5pkgs/Reaktor/default.nix new file mode 100644 index 000000000..54e88d939 --- /dev/null +++ b/krebs/5pkgs/Reaktor/default.nix @@ -0,0 +1,19 @@ +{ lib, pkgs,buildPythonPackage,fetchurl, ... }: + +buildPythonPackage rec { + name = "Reaktor-${version}"; + version = "0.3.5"; + propagatedBuildInputs = with pkgs;[ + pythonPackages.docopt + pythonPackages.requests + ]; + src = fetchurl { + url = "https://pypi.python.org/packages/source/R/Reaktor/Reaktor-${version}.tar.gz"; + sha256 = "1bi92hbm5f4z87biklh8lpjrmfhrdrj7x2hr64lkxpcabgs8kgyh"; + }; + meta = { + homepage = http://krebsco.de/; + description = "An IRC bot based on asynchat"; + license = lib.licenses.wtfpl; + }; +} |