pythonPAckages.dj-search-url: init at 0.1
This commit is contained in:
parent
f13d6d3e46
commit
36eee63f36
|
@ -0,0 +1,23 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.1";
|
||||
pname = "dj-search-url";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "424d1a5852500b3c118abfdd0e30b3e0016fe68e7ed27b8553a67afa20d4fb40";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/dstufft/dj-search-url;
|
||||
description = "Use Search URLs in your Django Haystack Application";
|
||||
license = licenses.bsd0;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
|
||||
}
|
|
@ -2124,6 +2124,8 @@ in {
|
|||
|
||||
dj-database-url = callPackage ../development/python-modules/dj-database-url { };
|
||||
|
||||
dj-search-url = callPackage ../development/python-modules/dj-search-url { };
|
||||
|
||||
djmail = callPackage ../development/python-modules/djmail { };
|
||||
|
||||
pillowfight = callPackage ../development/python-modules/pillowfight { };
|
||||
|
|
Loading…
Reference in New Issue