mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
pythonPackages.django-rest-auth: init at 0.9.3
This commit is contained in:
parent
90f4df8a4d
commit
f7de6e5fb3
29
pkgs/development/python-modules/django-rest-auth/default.nix
Normal file
29
pkgs/development/python-modules/django-rest-auth/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -2252,6 +2252,8 @@ in {
|
||||
|
||||
django_polymorphic = callPackage ../development/python-modules/django-polymorphic { };
|
||||
|
||||
django-rest-auth = callPackage ../development/python-modules/django-rest-auth { };
|
||||
|
||||
django-sampledatahelper = callPackage ../development/python-modules/django-sampledatahelper { };
|
||||
|
||||
django-sites = callPackage ../development/python-modules/django-sites { };
|
||||
|
Loading…
Reference in New Issue
Block a user