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`.
30 lines
780 B
Nix
30 lines
780 B
Nix
{ stdenv, buildPythonPackage, fetchFromGitHub
|
|
, flask, oauthlib, requests_oauthlib, flask_sqlalchemy
|
|
, mock, nose}:
|
|
buildPythonPackage rec {
|
|
pname = "Flask-OAuthlib";
|
|
version = "0.9.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lepture";
|
|
repo = "flask-oauthlib";
|
|
rev = "v${version}";
|
|
sha256 = "1vnr2kmbwl6mv2fsv92jjxzfibq2m3pnbcs6ba9k32jr1ci7wfh7";
|
|
};
|
|
|
|
buildInputs = [ mock nose ];
|
|
propagatedBuildInputs = [
|
|
flask flask_sqlalchemy oauthlib requests_oauthlib
|
|
];
|
|
|
|
checkPhase = "nosetests -d";
|
|
doCheck = false; # request mocking fails
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "OAuthlib implementation for Flask";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.mic92 ];
|
|
homepage = https://github.com/lepture/flask-oauthlib;
|
|
};
|
|
}
|