Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 version = "0.1"; 8 pname = "dj-search-url"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "424d1a5852500b3c118abfdd0e30b3e0016fe68e7ed27b8553a67afa20d4fb40"; 13 }; 14 15 meta = with lib; { 16 homepage = "https://github.com/dstufft/dj-search-url"; 17 description = "Use Search URLs in your Django Haystack Application"; 18 license = licenses.bsd0; 19 maintainers = [ ]; 20 }; 21 22}