summary refs log tree commit diff
path: root/pkgs/development/python-modules/djangorestframework/default.nix
blob: ce92fab3e965703d02c21166c36f2adcd741c595 (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
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, django, isPy27 }:

buildPythonPackage rec {
  version = "3.12.2";
  pname = "djangorestframework";
  disabled = isPy27;

  src = fetchFromGitHub {
    owner = "encode";
    repo = "django-rest-framework";
    rev = version;
    sha256 = "y/dw6qIOc6NaNpBWJXDwHX9aFodgKv9rGKWQKS6STlk=";
  };

  # Test settings are missing
  doCheck = false;

  propagatedBuildInputs = [ django ];

  meta = with lib; {
    description = "Web APIs for Django, made easy";
    homepage = "https://www.django-rest-framework.org/";
    maintainers = with maintainers; [ desiderius ];
    license = licenses.bsd2;
  };
}