ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
32 lines
910 B
Nix
32 lines
910 B
Nix
{ stdenv, buildPythonPackage, fetchFromGitHub, requests, requests_oauthlib
|
|
, django, python-openid, mock, coverage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-allauth";
|
|
version = "0.36.0";
|
|
|
|
# no tests on PyPI
|
|
src = fetchFromGitHub {
|
|
owner = "pennersr";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1c863cmd521j6cwpyd50jxz5y62fdschrhm15jfqihicyr9imjan";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests requests_oauthlib django python-openid ];
|
|
|
|
checkInputs = [ coverage mock ];
|
|
|
|
doCheck = false;
|
|
checkPhase = ''
|
|
cd $NIX_BUILD_TOP/$sourceRoot
|
|
coverage run manage.py test allauth
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication";
|
|
homepage = https://www.intenct.nl/projects/django-allauth;
|
|
license = licenses.mit;
|
|
};
|
|
}
|