nixpkgs/pkgs/development/python-modules/rocket-errbot/default.nix
2018-05-02 22:06:08 +02:00

25 lines
649 B
Nix

{ lib, fetchurl, fetchpatch, buildPythonPackage }:
buildPythonPackage rec {
name = "rocket-errbot-${version}";
version = "1.2.5";
src = fetchurl {
url = "mirror://pypi/r/rocket-errbot/${name}.tar.gz";
sha256 = "181y1wqjvlry5xdzbliajvrxvswzh3myh795jnj1pm92r5grqzda";
};
# remove with 1.2.6
patches = [ (fetchpatch {
url = "https://github.com/errbotio/rocket/pull/1.patch";
sha256 = "1s668yv5b86b78vbqwhcl44k2l16c9bhk3199yy9hayf0vkxnwif";
}) ];
meta = {
homepage = https://github.com/errbotio/rocket;
description = "Modern, multi-threaded and extensible web server";
license = lib.licenses.mit;
};
}