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