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