summary refs log tree commit diff
path: root/pkgs/development/python-modules/dj-search-url/default.nix
blob: 321bec8149d125e6fbbda6962684e55686b854d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv
, 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 ];
  };

}