diff options
Diffstat (limited to 'internal/rosa/python.go')
| -rw-r--r-- | internal/rosa/python.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/internal/rosa/python.go b/internal/rosa/python.go index 1022e643..e0aaaaab 100644 --- a/internal/rosa/python.go +++ b/internal/rosa/python.go @@ -274,6 +274,23 @@ func init() { } func init() { + const ( + version = "1.0.4" + checksum = "zAZbcIO-JnNhb-xMg76W2j0tn5b2MtavWjUpGpPjBmbrcRZDLoXBn8o8yJ3DUgCT" + ) + artifactsM[PythonPathspec] = newPythonPackage( + "pathspec", 23424, + "utility library for gitignore style pattern matching of file paths", + "https://github.com/cpburnz/python-pathspec", + version, newFromGitHub( + "cpburnz/python-pathspec", + "v"+version, checksum, + ), nil, nil, nil, + PythonFlitCore, + ) +} + +func init() { artifactsM[PythonPygments] = newPypi( "pygments", 3986, " a syntax highlighting package written in Python", |
