about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dj-search-url/default.nix
blob: e57e66be59b84a887b07c2e5cf34cc2f5af96f06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  version = "0.1";
  format = "setuptools";
  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 = [ ];
  };
}