python311Packages.dj-rest-auth: refactor
This commit is contained in:
parent
8b81f53362
commit
a334fb4663
1 changed files with 11 additions and 15 deletions
|
@ -1,15 +1,15 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, django
|
||||
, django-allauth
|
||||
, djangorestframework
|
||||
, djangorestframework-simplejwt
|
||||
, responses
|
||||
, unittest-xml-reporting
|
||||
, fetchFromGitHub
|
||||
, python
|
||||
, pythonOlder
|
||||
, responses
|
||||
, setuptools
|
||||
, unittest-xml-reporting
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -17,6 +17,8 @@ buildPythonPackage rec {
|
|||
version = "5.0.2";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "iMerica";
|
||||
repo = "dj-rest-auth";
|
||||
|
@ -24,17 +26,8 @@ buildPythonPackage rec {
|
|||
hash = "sha256-TqeNpxXn+v89fEiJ4AVNhp8blCfYQKFQfYmZ6/QlRbQ=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
# https://github.com/iMerica/dj-rest-auth/pull/561
|
||||
url = "https://github.com/iMerica/dj-rest-auth/commit/be0cf53d94582183320b0994082f0a312c1066d9.patch";
|
||||
hash = "sha256-BhZ7BWW8m609cVn1WCyPfpZq/706YVZAesrkcMKTD3A=";
|
||||
})
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "coveralls>=1.11.1" "" \
|
||||
--replace "==" ">="
|
||||
'';
|
||||
|
||||
|
@ -61,7 +54,7 @@ buildPythonPackage rec {
|
|||
] ++ passthru.optional-dependencies.with_social;
|
||||
|
||||
preCheck = ''
|
||||
# connects to graph.facebook.com
|
||||
# Test connects to graph.facebook.com
|
||||
substituteInPlace dj_rest_auth/tests/test_serializers.py \
|
||||
--replace "def test_http_error" "def dont_test_http_error"
|
||||
'';
|
||||
|
@ -72,11 +65,14 @@ buildPythonPackage rec {
|
|||
runHook postCheck
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "dj_rest_auth" ];
|
||||
pythonImportsCheck = [
|
||||
"dj_rest_auth"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Authentication for Django Rest Framework";
|
||||
homepage = "https://github.com/iMerica/dj-rest-auth";
|
||||
changelog = "https://github.com/iMerica/dj-rest-auth/releases/tag/${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue