nixpkgs/pkgs/development/python-modules/django_reversion/default.nix
Robert Scott de3b2d1753 pythonPackages.django_reversion: disable checks (#54379)
these weren't running properly anyway - they assume the availability of a
mysql and/or postgresql database
2019-01-21 11:24:07 +01:00

28 lines
632 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, django
}:
buildPythonPackage rec {
pname = "django-reversion";
version = "3.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "9b8a245917e1bae131d3210c9ca7efbc066e60f32efa436e391c9803c3f4b61b";
};
# tests assume the availability of a mysql/postgresql database
doCheck = false;
propagatedBuildInputs = [ django ];
meta = with stdenv.lib; {
description = "An extension to the Django web framework that provides comprehensive version control facilities";
homepage = https://github.com/etianen/django-reversion;
license = licenses.bsd3;
};
}