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