depot/third_party/nixpkgs/pkgs/development/python-modules/dj-search-url/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

23 lines
491 B
Nix

{
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 = [ ];
};
}