Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 21 lines 501 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "pathspec"; 8 version = "0.6.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "0p7ab7jx3wgg7xdj2q8yk99cz3xv2a5p1r8q9kfylnvqn34cr1g2"; 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}