Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 27 lines 567 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5, django 6}: 7 8buildPythonPackage rec { 9 pname = "django_evolution"; 10 version = "0.7.8"; 11 disabled = isPy3k; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "493ff2adad760990ce8cf87c13955af85d4dcff097427bc3619ed01672fac4a8"; 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}