summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/rocket-errbot/default.nix
blob: 57c9d2eeae31eb91a733715ff2628b83b79c2492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  lib,
  fetchPypi,
  fetchpatch,
  buildPythonPackage,
}:

buildPythonPackage rec {
  pname = "rocket-errbot";
  version = "1.2.5";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "181y1wqjvlry5xdzbliajvrxvswzh3myh795jnj1pm92r5grqzda";
  };

  # remove with 1.2.6
  patches = [
    (fetchpatch {
      # https://github.com/errbotio/rocket/pull/1
      name = "errbotio-rocket-pull-1.patch";
      url = "https://github.com/errbotio/rocket/compare/f1a52fe17164f83bccce5e6a1935fc5071c2265f...d69adcd49de5d78bd80f952a2ee31e6a0bac4e3d.patch";
      sha256 = "1s668yv5b86b78vbqwhcl44k2l16c9bhk3199yy9hayf0vkxnwif";
    })
  ];

  meta = {
    homepage = "https://github.com/errbotio/rocket";
    description = "Modern, multi-threaded and extensible web server";
    license = lib.licenses.mit;
  };
}