Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5, django 6}: 7 8buildPythonPackage rec { 9 pname = "django_evolution"; 10 version = "2.0"; 11 disabled = isPy3k; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "a0bc983657de1b0bc5c8d29ddcbf7b6fb113685bf306ccc266cf22b8a77bd862"; 16 }; 17 18 propagatedBuildInputs = [ django ]; 19 20 meta = with stdenv.lib; { 21 description = "A database schema evolution tool for the Django web framework"; 22 homepage = "https://github.com/beanbaginc/django-evolution"; 23 license = licenses.bsd0; 24 broken = true; 25 }; 26 27}