mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
pythonPackages.django_appconf: 1.0.1 -> 1.0.2
This commit is contained in:
parent
a2c5fbe56d
commit
73076f3252
2 changed files with 24 additions and 21 deletions
23
pkgs/development/python-modules/django_appconf/default.nix
Normal file
23
pkgs/development/python-modules/django_appconf/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -9865,27 +9865,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
django_appconf = buildPythonPackage rec {
|
django_appconf = callPackage ../development/python-modules/django_appconf { };
|
||||||
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_colorful = buildPythonPackage rec {
|
django_colorful = buildPythonPackage rec {
|
||||||
name = "django-colorful-${version}";
|
name = "django-colorful-${version}";
|
||||||
|
|
Loading…
Reference in a new issue