567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
24 lines
485 B
Nix
24 lines
485 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.1";
|
|
format = "setuptools";
|
|
pname = "dj-search-url";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "424d1a5852500b3c118abfdd0e30b3e0016fe68e7ed27b8553a67afa20d4fb40";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/dstufft/dj-search-url";
|
|
description = "Use Search URLs in your Django Haystack Application";
|
|
license = lib.licenses.bsd0;
|
|
maintainers = [ ];
|
|
};
|
|
}
|