My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/dj-search-url/default.nix

22 lines
483 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
version = "0.1";
pname = "dj-search-url";
src = fetchPypi {
inherit pname version;
sha256 = "424d1a5852500b3c118abfdd0e30b3e0016fe68e7ed27b8553a67afa20d4fb40";
};
meta = with lib; {
homepage = "https://github.com/dstufft/dj-search-url";
description = "Use Search URLs in your Django Haystack Application";
license = licenses.bsd0;
maintainers = [ maintainers.costrouc ];
};
}