depot/third_party/nixpkgs/pkgs/development/python-modules/dj-search-url/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

23 lines
487 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 = [ ];
};
}