Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 29 lines 661 B view raw
1{ lib, 2 fetchPypi, 3 django, 4 djangorestframework, 5 six, 6 buildPythonPackage 7}: 8 9buildPythonPackage rec { 10 pname = "django-rest-auth"; 11 version = "0.9.3"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "ad155a0ed1061b32e3e46c9b25686e397644fd6acfd35d5c03bc6b9d2fc6c82a"; 16 }; 17 18 propagatedBuildInputs = [ django djangorestframework six ]; 19 20 # pypi release does not include tests 21 doCheck = false; 22 23 meta = with lib; { 24 description = "Django app that makes registration and authentication easy"; 25 homepage = https://github.com/Tivix/django-rest-auth; 26 license = licenses.mit; 27 maintainers = [ maintainers.ivegotasthma ]; 28 }; 29}