1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6}:
7
8buildPythonPackage rec {
9 pname = "commonregex";
10 version = "1.5.4";
11 pyproject = true;
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-JxUwZ4rYr1PA6MIzp2JZeWnoRtACnxIhWsF4eR894KU=";
16 };
17
18 build-system = [ setuptools ];
19
20 meta = with lib; {
21 description = "Collection of common regular expressions bundled with an easy to use interface";
22 homepage = "https://github.com/madisonmay/CommonRegex";
23 maintainers = with maintainers; [ k900 ];
24 license = licenses.mit;
25 };
26}