blob: f72a9f2977b2e38d8e38d322bac87b5e4d0d49fa (
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
27
28
|
{
lib,
buildPythonPackage,
fetchPypi,
python,
}:
buildPythonPackage (finalAttrs: {
pname = "glob2";
version = "0.7";
format = "setuptools";
src = fetchPypi {
inherit (finalAttrs) pname version;
sha256 = "135bj8gm6vn45vv0phrvhyir36kfm17y7kmasxinv8lagk8dphw5";
};
checkPhase = ''
${python.interpreter} test.py
'';
meta = {
description = "Version of the glob module that can capture patterns and supports recursive wildcards";
homepage = "https://github.com/miracle2k/python-glob2/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ sigmanificient ];
};
})
|