depot/third_party/nixpkgs/pkgs/development/python-modules/rocket-errbot/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

27 lines
813 B
Nix

{ 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;
};
}