summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-16 17:50:00 -0400
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-10-18 11:02:23 +0200
commit32414fe980e47bfa1715e0e8be507c2b4cfa1e7c (patch)
tree96f757531023e2b1025ae6f75fdcd1e94d7b11e9 /pkgs
parent1de37f01ee10950c0f427143aa5b01eba006e8b6 (diff)
downloadnixlib-32414fe980e47bfa1715e0e8be507c2b4cfa1e7c.tar
nixlib-32414fe980e47bfa1715e0e8be507c2b4cfa1e7c.tar.gz
nixlib-32414fe980e47bfa1715e0e8be507c2b4cfa1e7c.tar.bz2
nixlib-32414fe980e47bfa1715e0e8be507c2b4cfa1e7c.tar.lz
nixlib-32414fe980e47bfa1715e0e8be507c2b4cfa1e7c.tar.xz
nixlib-32414fe980e47bfa1715e0e8be507c2b4cfa1e7c.tar.zst
nixlib-32414fe980e47bfa1715e0e8be507c2b4cfa1e7c.zip
pythonPackages.django_contrib_comments: init at 1.9.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/django_contrib_comments/default.nix24
-rw-r--r--pkgs/top-level/python-packages.nix2
2 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/django_contrib_comments/default.nix b/pkgs/development/python-modules/django_contrib_comments/default.nix
new file mode 100644
index 000000000000..f850350ee168
--- /dev/null
+++ b/pkgs/development/python-modules/django_contrib_comments/default.nix
@@ -0,0 +1,24 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, django
+}:
+
+buildPythonPackage rec {
+  pname = "django-contrib-comments";
+  version = "1.9.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "689f3f80ff7ea8ab9f712ae5fe17ffa2ee8babbf8d75229ee8acc7bad461dfef";
+  };
+
+  propagatedBuildInputs = [ django ];
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/django/django-contrib-comments;
+    description = "The code formerly known as django.contrib.comments";
+    license = licenses.bsd0;
+  };
+
+}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 979caf6a21ae..022334913473 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -2031,6 +2031,8 @@ in {
 
   django_compat = callPackage ../development/python-modules/django-compat { };
 
+  django_contrib_comments = callPackage ../development/python-modules/django_contrib_comments { };
+
   django_environ = callPackage ../development/python-modules/django_environ { };
 
   django_evolution = callPackage ../development/python-modules/django_evolution { };