pythonPackages.regex: init at 2016.01.10

This commit is contained in:
Nikolay Amiantov 2016-02-14 14:46:35 +03:00
parent a0c9acb007
commit b96b7c9628

View file

@ -7440,6 +7440,23 @@ in modules // {
};
};
regex = buildPythonPackage rec {
name = "regex-${version}";
version = "2016.01.10";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/r/regex/${name}.tar.gz";
sha256 = "1q3rbmnijjzn7y3cm3qy49b5lqw1fq38zv974xma387lwc37d9q2";
};
meta = {
description = "Alternative regular expression module, to replace re";
homepage = https://bitbucket.org/mrabarnett/mrab-regex;
license = licenses.psfl;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
};
repoze_lru = buildPythonPackage rec {
name = "repoze.lru-0.6";