Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / django_reversion / default.nix
blob6de1ce64328b14d7c1e96fc643c1682acc4e8af1
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , django
5 }:
7 buildPythonPackage rec {
8   pname = "django-reversion";
9   version = "3.0.9";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "a5af55f086a3f9c38be2f049c251e06005b9ed48ba7a109473736b1fc95a066f";
14   };
16   # tests assume the availability of a mysql/postgresql database
17   doCheck = false;
19   propagatedBuildInputs = [ django ];
21   meta = with lib; {
22     description = "An extension to the Django web framework that provides comprehensive version control facilities";
23     homepage = "https://github.com/etianen/django-reversion";
24     license = licenses.bsd3;
25   };