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