Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 27 lines 632 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, django 5}: 6 7buildPythonPackage rec { 8 pname = "django-reversion"; 9 version = "3.0.4"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "ed46722389fb2441860d471c7538967dee545bcee891d3d907b04f4baa98f5fa"; 14 }; 15 16 # tests assume the availability of a mysql/postgresql database 17 doCheck = false; 18 19 propagatedBuildInputs = [ django ]; 20 21 meta = with stdenv.lib; { 22 description = "An extension to the Django web framework that provides comprehensive version control facilities"; 23 homepage = https://github.com/etianen/django-reversion; 24 license = licenses.bsd3; 25 }; 26 27}