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`.
42 lines
787 B
Nix
42 lines
787 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nose
|
|
, blinker
|
|
, tzlocal
|
|
, mock
|
|
, rednose
|
|
, flask
|
|
, six
|
|
, jsonschema
|
|
, pytz
|
|
, aniso8601
|
|
, flask-restful
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flask-restplus";
|
|
version = "0.10.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1qs9c3fzidd0m3r8rhw0zqrlsaqr2561z45xs6kg19l7c2x6g5qj";
|
|
};
|
|
|
|
checkInputs = [ nose blinker tzlocal mock rednose ];
|
|
propagatedBuildInputs = [ flask six jsonschema pytz aniso8601 flask-restful ];
|
|
|
|
# RuntimeError: Working outside of application context.
|
|
doCheck = false;
|
|
|
|
checkPhase = ''
|
|
nosetests
|
|
'';
|
|
|
|
meta = {
|
|
homepage = https://github.com/noirbizarre/flask-restplus;
|
|
description = "Fast, easy and documented API development with Flask";
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|