pythonPackages.django_appconf: 1.0.1 -> 1.0.2

This commit is contained in:
Lancelot SIX 2017-07-11 09:58:12 +02:00
parent a2c5fbe56d
commit 73076f3252
No known key found for this signature in database
GPG Key ID: 02E1542BA66FB047
2 changed files with 24 additions and 21 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi, six }:
buildPythonPackage rec {
pname = "django-appconf";
version = "1.0.2";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0qdjdx35g66xjsc50v0c5h3kg6njs8df33mbjx6j4k1vd3m9lkba";
};
# No tests in archive
doCheck = false;
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "A helper class for handling configuration defaults of packaged apps gracefully";
homepage = http://django-appconf.readthedocs.org/;
license = licenses.bsd2;
maintainers = with maintainers; [ desiderius ];
};
}

View File

@ -9865,27 +9865,7 @@ in {
};
};
django_appconf = buildPythonPackage rec {
name = "django-appconf-${version}";
version = "1.0.1";
src = pkgs.fetchurl {
url = "mirror://pypi/d/django-appconf/django-appconf-${version}.tar.gz";
sha256 = "0q3fg17qi4vwpipbj075zn4wk58p6a946kah8wayks1423xpa4xs";
};
# No tests in archive
doCheck = false;
propagatedBuildInputs = with self; [ six ];
meta = {
description = "A helper class for handling configuration defaults of packaged apps gracefully";
homepage = http://django-appconf.readthedocs.org/;
license = licenses.bsd2;
maintainers = with maintainers; [ desiderius ];
};
};
django_appconf = callPackage ../development/python-modules/django_appconf { };
django_colorful = buildPythonPackage rec {
name = "django-colorful-${version}";