nixpkgs/pkgs/development/python-modules/regex/default.nix

24 lines
525 B
Nix
Raw Normal View History

2018-01-01 10:46:35 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "regex";
version = "2018.02.08";
2018-01-01 10:46:35 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "2353c0e983c4029caf32016f1dddef623c3117ac282a818468c6d2f5d541698d";
2018-01-01 10:46:35 +00:00
};
meta = {
description = "Alternative regular expression module, to replace re";
homepage = https://bitbucket.org/mrabarnett/mrab-regex;
2018-01-01 10:46:35 +00:00
license = lib.licenses.psfl;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ abbradar ];
};
}