Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, django 5, six 6}: 7 8buildPythonPackage rec { 9 pname = "django-contrib-comments"; 10 version = "1.9.2"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "d1232bade3094de07dcc205fc833204384e71ba9d30caadcb5bb2882ce8e8d31"; 15 }; 16 17 propagatedBuildInputs = [ django six ]; 18 19 meta = with stdenv.lib; { 20 homepage = "https://github.com/django/django-contrib-comments"; 21 description = "The code formerly known as django.contrib.comments"; 22 license = licenses.bsd0; 23 }; 24 25}