nixpkgs/pkgs/development/python-modules/django-rest-auth/default.nix
2019-01-21 13:49:49 +01:00

30 lines
661 B
Nix

{ lib,
fetchPypi,
django,
djangorestframework,
six,
buildPythonPackage
}:
buildPythonPackage rec {
pname = "django-rest-auth";
version = "0.9.3";
src = fetchPypi {
inherit pname version;
sha256 = "ad155a0ed1061b32e3e46c9b25686e397644fd6acfd35d5c03bc6b9d2fc6c82a";
};
propagatedBuildInputs = [ django djangorestframework six ];
# pypi release does not include tests
doCheck = false;
meta = with lib; {
description = "Django app that makes registration and authentication easy";
homepage = https://github.com/Tivix/django-rest-auth;
license = licenses.mit;
maintainers = [ maintainers.ivegotasthma ];
};
}