1{ stdenv, buildPythonPackage, fetchPypi, six }: 2buildPythonPackage rec { 3 pname = "django-appconf"; 4 version = "1.0.2"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "0qdjdx35g66xjsc50v0c5h3kg6njs8df33mbjx6j4k1vd3m9lkba"; 9 }; 10 11 # No tests in archive 12 doCheck = false; 13 14 propagatedBuildInputs = [ six ]; 15 16 meta = with stdenv.lib; { 17 description = "A helper class for handling configuration defaults of packaged apps gracefully"; 18 homepage = http://django-appconf.readthedocs.org/; 19 license = licenses.bsd2; 20 maintainers = with maintainers; [ desiderius ]; 21 }; 22}