blob: 0a8330cdced66c8a795e5f93c484edde60fba20e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
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 = {
description = "Collection of common regular expressions bundled with an easy to use interface";
homepage = "https://github.com/madisonmay/CommonRegex";
maintainers = with lib.maintainers; [ k900 ];
license = lib.licenses.mit;
};
}
|