summary refs log tree commit diff
path: root/pkgs/development/python-modules/django_evolution/default.nix
blob: dba92efb2d9480e3589feb8ca663393a04db7e85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, django
}:

buildPythonPackage rec {
  pname = "django_evolution";
  version = "2.1";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "997efdc7f27248fd3c5e9eeccae1cfee046dfead037b171d30cbe6e91c9ca3d7";
  };

  propagatedBuildInputs = [ django ];

  meta = with lib; {
    description = "A database schema evolution tool for the Django web framework";
    homepage = "https://github.com/beanbaginc/django-evolution";
    license = licenses.bsd0;
    broken = true;
  };

}