1{ lib 2, buildPythonPackage 3, fetchPypi 4, django 5, six 6}: 7 8buildPythonPackage rec { 9 pname = "django-environ"; 10 version = "0.11.2"; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256-8yqHqgiZiUwn1OF3b6a0d+gWTtf2s+QQpiptcsqvZL4="; 15 }; 16 17 # The testsuite fails to modify the base environment 18 doCheck = false; 19 propagatedBuildInputs = [ django six ]; 20 21 meta = with lib; { 22 description = "Utilize environment variables to configure your Django application"; 23 homepage = "https://github.com/joke2k/django-environ/"; 24 license = licenses.mit; 25 }; 26 27}