Files
nixpkgs/pkgs/development/python-modules/djangorestframework/default.nix
T

23 lines
576 B
Nix
Raw Normal View History

2018-06-23 15:27:58 +02:00
{ stdenv, buildPythonPackage, fetchPypi, django }:
buildPythonPackage rec {
2018-04-08 08:32:34 +02:00
version = "3.8.2";
2017-05-27 11:25:35 +02:00
pname = "djangorestframework";
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
2018-04-08 08:32:34 +02:00
sha256 = "b6714c3e4b0f8d524f193c91ecf5f5450092c2145439ac2769711f7eba89a9d9";
};
# Test settings are missing
doCheck = false;
propagatedBuildInputs = [ django ];
meta = with stdenv.lib; {
description = "Web APIs for Django, made easy";
homepage = http://www.django-rest-framework.org/;
maintainers = with maintainers; [ desiderius ];
license = licenses.bsd2;
};
}