1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "pathspec";
8 version = "0.9.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1";
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}