mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
28 lines
804 B
Nix
28 lines
804 B
Nix
{ lib, fetchPypi, buildPythonPackage
|
|
, nose, flask, six, packaging }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Flask-Cors";
|
|
version = "3.0.10";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "b60839393f3b84a0f3746f6cdca56c1ad7426aa738b70d6c61375857823181de";
|
|
};
|
|
|
|
nativeCheckInputs = [ nose packaging ];
|
|
propagatedBuildInputs = [ flask six ];
|
|
|
|
# Exclude test_acl_uncaught_exception_500 test case because is not compatible
|
|
# with Flask>=1.1.0. See: https://github.com/corydolphin/flask-cors/issues/253
|
|
checkPhase = ''
|
|
nosetests --exclude test_acl_uncaught_exception_500
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A Flask extension adding a decorator for CORS support";
|
|
homepage = "https://github.com/corydolphin/flask-cors";
|
|
license = with licenses; [ mit ];
|
|
};
|
|
}
|