pythonPackages.django-compat: 1.0.13 -> 1.0.14
This commit is contained in:
parent
453da61547
commit
72966154b3
23
pkgs/development/python-modules/django-compat/default.nix
Normal file
23
pkgs/development/python-modules/django-compat/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchurl,
|
||||||
|
django, django_nose, six
|
||||||
|
}:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "django-compat-${version}";
|
||||||
|
version = "1.0.14";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://pypi/d/django-compat/${name}.tar.gz";
|
||||||
|
sha256 = "18y5bxxmafcd4np42mzbalva5lpssq0b8ki7zckbzvdv2mnv43xj";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
buildInputs = [ django_nose ];
|
||||||
|
propagatedBuildInputs = [ django six ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Forward and backwards compatibility layer for Django 1.4, 1.7, 1.8, 1.9, 1.10 and 1.11";
|
||||||
|
homepage = https://github.com/arteria/django-compat;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
@ -10514,27 +10514,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
django_compat = buildPythonPackage rec {
|
django_compat = callPackage ../development/python-modules/django-compat { };
|
||||||
name = "django-compat-${version}";
|
|
||||||
version = "1.0.13";
|
|
||||||
|
|
||||||
# build process attempts to access a missing README.rst
|
|
||||||
disabled = isPy35;
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/d/django-compat/${name}.tar.gz";
|
|
||||||
sha256 = "0s0z7cx0vv1kjsyzk24sg256hfnd09ssilc9rakhxrzr3firgx80";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = with self; [ django_nose ];
|
|
||||||
propagatedBuildInputs = with self; [ django six ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Forward and backwards compatibility layer for Django 1.4, 1.7, 1.8, 1.9 and 1.10";
|
|
||||||
homepage = https://github.com/arteria/django-compat;
|
|
||||||
license = licenses.mit;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
django_environ = buildPythonPackage rec {
|
django_environ = buildPythonPackage rec {
|
||||||
name = "django-environ-${version}";
|
name = "django-environ-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user