summary refs log tree commit diff
path: root/pkgs/development/python-modules/glob2/default.nix
blob: bce69bffff2f021124ac7b1133e8019ddd477d39 (plain) (blame)
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
, python
}:

buildPythonPackage rec {
  pname = "glob2";
  version = "0.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "135bj8gm6vn45vv0phrvhyir36kfm17y7kmasxinv8lagk8dphw5";
  };

  checkPhase = ''
    ${python.interpreter} test.py
  '';

  meta = with lib; {
    description = "Version of the glob module that can capture patterns and supports recursive wildcards";
    homepage = https://github.com/miracle2k/python-glob2/;
    license = licenses.bsd3;
    maintainers = [ maintainers.costrouc ];
  };
}