mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
pythonPackages.django-rest-auth: init at 0.9.3
This commit is contained in:
parent
90f4df8a4d
commit
f7de6e5fb3
2 changed files with 31 additions and 0 deletions
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_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-sampledatahelper = callPackage ../development/python-modules/django-sampledatahelper { };
|
||||||
|
|
||||||
django-sites = callPackage ../development/python-modules/django-sites { };
|
django-sites = callPackage ../development/python-modules/django-sites { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue