depot/nix/pkgs/baserow/backend/pynixify/packages/regex/default.nix

23 lines
637 B
Nix

# WARNING: This file was automatically generated. You should avoid editing it.
# If you run pynixify again, the file will be either overwritten or
# deleted, and you will lose the changes you made to it.
{ buildPythonPackage, fetchPypi, lib }:
buildPythonPackage rec {
pname = "regex";
version = "2021.8.3";
src = fetchPypi {
inherit pname version;
sha256 = "0skayn5lmwc0qb0aybzv59y68qiaqpdhwawk7nf3d6rcmmyr6dc9";
};
# TODO FIXME
doCheck = false;
meta = with lib; {
description = "Alternative regular expression module, to replace re.";
homepage = "https://bitbucket.org/mrabarnett/mrab-regex";
};
}