Commit 12672f38 authored by K900's avatar K900
Browse files

python312Packages.commonregex: init at 1.5.4

parent 5d563f1e
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
}:

buildPythonPackage rec {
  pname = "commonregex";
  version = "1.5.4";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-JxUwZ4rYr1PA6MIzp2JZeWnoRtACnxIhWsF4eR894KU=";
  };

  build-system = [ setuptools ];

  meta = with lib; {
    description = "A collection of common regular expressions bundled with an easy to use interface";
    homepage = "https://github.com/madisonmay/CommonRegex";
    maintainers = with maintainers; [ k900 ];
    license = licenses.mit;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2568,6 +2568,8 @@ self: super: with self; {
  commonmark = callPackage ../development/python-modules/commonmark { };
  commonregex = callPackage ../development/python-modules/commonregex { };
  complycube = callPackage ../development/python-modules/complycube { };
  compreffor = callPackage ../development/python-modules/compreffor { };