summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-25 15:20:55 -0400
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-10-26 16:37:52 +0200
commit36eee63f36d187e4cb706161b5312cbbc472f4b2 (patch)
tree4f0ef2e7680268af18e62597543105c1c42c5796 /pkgs/development/python-modules
parentf13d6d3e46d45e8ee00b1963faec73f3250c9dad (diff)
downloadnixlib-36eee63f36d187e4cb706161b5312cbbc472f4b2.tar
nixlib-36eee63f36d187e4cb706161b5312cbbc472f4b2.tar.gz
nixlib-36eee63f36d187e4cb706161b5312cbbc472f4b2.tar.bz2
nixlib-36eee63f36d187e4cb706161b5312cbbc472f4b2.tar.lz
nixlib-36eee63f36d187e4cb706161b5312cbbc472f4b2.tar.xz
nixlib-36eee63f36d187e4cb706161b5312cbbc472f4b2.tar.zst
nixlib-36eee63f36d187e4cb706161b5312cbbc472f4b2.zip
pythonPAckages.dj-search-url: init at 0.1
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/dj-search-url/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/dj-search-url/default.nix b/pkgs/development/python-modules/dj-search-url/default.nix
new file mode 100644
index 000000000000..b66f6b8f73a3
--- /dev/null
+++ b/pkgs/development/python-modules/dj-search-url/default.nix
@@ -0,0 +1,23 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, python
+}:
+
+buildPythonPackage rec {
+  version = "0.1";
+  pname = "dj-search-url";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "424d1a5852500b3c118abfdd0e30b3e0016fe68e7ed27b8553a67afa20d4fb40";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/dstufft/dj-search-url;
+    description = "Use Search URLs in your Django Haystack Application";
+    license = licenses.bsd0;
+    maintainers = [ maintainers.costrouc ];
+  };
+
+}