mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-12 05:16:25 +03:00
pythonPackages.flask-appbuilder: 2.1.6 -> 2.3.0
This commit is contained in:
parent
eef3ce0bbb
commit
0005b13fc5
1 changed files with 11 additions and 10 deletions
|
@ -25,12 +25,12 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "flask-appbuilder";
|
pname = "flask-appbuilder";
|
||||||
version = "2.1.6";
|
version = "2.3.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "Flask-AppBuilder";
|
pname = "Flask-AppBuilder";
|
||||||
inherit version;
|
inherit version;
|
||||||
sha256 = "a37d7d6a62407a2e0975af5305c795f2fb5c06ecc34e3cf64659d083b1b2dd5f";
|
sha256 = "04bsswi7daaqda01a83rd1f2gq6asii520f9arjf7bsy24pmbprc";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
|
@ -60,12 +60,13 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace setup.py \
|
substituteInPlace setup.py \
|
||||||
--replace "jsonschema>=3.0.1<4" "jsonschema" \
|
--replace "apispec[yaml]>=1.1.1, <2" "apispec" \
|
||||||
--replace "marshmallow>=2.18.0,<2.20" "marshmallow" \
|
--replace "jsonschema>=3.0.1, <4" "jsonschema" \
|
||||||
--replace "PyJWT>=1.7.1" "PyJWT" \
|
--replace "marshmallow>=2.18.0, <4.0.0" "marshmallow" \
|
||||||
--replace "Flask-SQLAlchemy>=2.4,<3" "Flask-SQLAlchemy" \
|
--replace "PyJWT>=1.7.1" "PyJWT" \
|
||||||
--replace "Flask-JWT-Extended>=3.18,<4" "Flask-JWT-Extended"
|
--replace "Flask-SQLAlchemy>=2.4, <3" "Flask-SQLAlchemy" \
|
||||||
|
--replace "Flask-JWT-Extended>=3.18, <4" "Flask-JWT-Extended"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# majority of tests require network access or mongo
|
# majority of tests require network access or mongo
|
||||||
|
@ -73,8 +74,8 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Simple and rapid application development framework, built on top of Flask";
|
description = "Simple and rapid application development framework, built on top of Flask";
|
||||||
homepage = https://github.com/dpgaspar/flask-appbuilder/;
|
homepage = "https://github.com/dpgaspar/flask-appbuilder/";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = [ maintainers.costrouc ];
|
maintainers = with maintainers; [ costrouc ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue