1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "pathspec";
8 version = "0.8.1";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "86379d6b86d75816baba717e64b1a3a3469deb93bb76d613c9ce79edc5cb68fd";
13 };
14
15 meta = {
16 description = "Utility library for gitignore-style pattern matching of file paths";
17 homepage = "https://github.com/cpburnz/python-path-specification";
18 license = lib.licenses.mpl20;
19 maintainers = with lib.maintainers; [ copumpkin ];
20 };
21}