uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
27
pkgs/development/python-modules/flask-cors/default.nix
Normal file
27
pkgs/development/python-modules/flask-cors/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ lib, fetchPypi, buildPythonPackage
|
||||
, nose, flask, six, packaging }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Flask-Cors";
|
||||
version = "3.0.10";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "b60839393f3b84a0f3746f6cdca56c1ad7426aa738b70d6c61375857823181de";
|
||||
};
|
||||
|
||||
checkInputs = [ 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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue