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