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