rebulk: init at 0.8.2

This commit is contained in:
Peter Marheine 2017-01-04 08:26:04 +00:00 committed by Michael Raskin
parent fc71c626e7
commit 044b3c93e7

View File

@ -12693,6 +12693,27 @@ in {
};
};
rebulk = buildPythonPackage rec {
version = "0.8.2";
name = "rebulk-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/r/rebulk/${name}.tar.gz";
sha256 = "8c09901bda7b79a21d46faf489d67d017aa54d38bdabdb53f824068a6640401a";
};
# Some kind of trickery with imports that doesn't work.
doCheck = false;
buildInputs = with self; [ pytest pytestrunner ];
propagatedBuildInputs = with self; [ six regex ];
meta = {
homepage = "https://github.com/Toilal/rebulk/";
license = licenses.mit;
description = "Advanced string matching from simple patterns";
};
};
gunicorn = callPackage ../development/python-modules/gunicorn.nix { };
hawkauthlib = buildPythonPackage rec {