mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-21 08:59:20 +03:00
python310Packages.flask-script: rename from flask_script
This commit is contained in:
parent
255e674e25
commit
94a932337f
6 changed files with 11 additions and 9 deletions
|
@ -198,7 +198,7 @@ python3'.pkgs.buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3'.pkgs; [
|
propagatedBuildInputs = with python3'.pkgs; [
|
||||||
cryptography pyrad pymysql python-dateutil flask-versioned flask_script
|
cryptography pyrad pymysql python-dateutil flask-versioned flask-script
|
||||||
defusedxml croniter flask-migrate pyjwt configobj sqlsoup pillow
|
defusedxml croniter flask-migrate pyjwt configobj sqlsoup pillow
|
||||||
python-gnupg passlib pyopenssl beautifulsoup4 smpplib flask-babel
|
python-gnupg passlib pyopenssl beautifulsoup4 smpplib flask-babel
|
||||||
ldap3 huey pyyaml qrcode oauth2client requests lxml cbor2 psycopg2
|
ldap3 huey pyyaml qrcode oauth2client requests lxml cbor2 psycopg2
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, flask, webassets, flask_script, nose }:
|
{ lib, buildPythonPackage, fetchPypi, flask, webassets, flask-script, nose }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "flask-assets";
|
pname = "flask-assets";
|
||||||
|
@ -16,7 +16,7 @@ buildPythonPackage rec {
|
||||||
substituteInPlace tests/test_integration.py --replace "'/foo'" "'/x/foo'"
|
substituteInPlace tests/test_integration.py --replace "'/foo'" "'/x/foo'"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [ flask webassets flask_script nose ];
|
propagatedBuildInputs = [ flask webassets flask-script nose ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/miracle2k/flask-assets";
|
homepage = "https://github.com/miracle2k/flask-assets";
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, alembic
|
, alembic
|
||||||
, flask
|
, flask
|
||||||
, flask_script
|
, flask-script
|
||||||
, flask-sqlalchemy
|
, flask-sqlalchemy
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, setuptools
|
, setuptools
|
||||||
|
@ -40,7 +40,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
flask_script
|
flask-script
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, flask, pytest }:
|
{ lib, buildPythonPackage, fetchPypi, flask, pytest }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "Flask-Script";
|
pname = "flask-script";
|
||||||
version = "2.0.6";
|
version = "2.0.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "Flask-Script";
|
||||||
sha256 = "0r8w2v89nj6b9p91p495cga5m72a673l2wc0hp0zqk05j4yrc9b4";
|
inherit version;
|
||||||
|
hash = "sha256-ZCWWPZEFTPzBhYBxQccxSpxa1GMlkRvSTctIm9AWHGU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ flask ];
|
propagatedBuildInputs = [ flask ];
|
||||||
|
|
|
@ -139,6 +139,7 @@ mapAliases ({
|
||||||
flask_migrate = flask-migrate; # added 2023-08-23
|
flask_migrate = flask-migrate; # added 2023-08-23
|
||||||
flask_principal = flask-principal; # added 2023-08-23
|
flask_principal = flask-principal; # added 2023-08-23
|
||||||
flask-restplus = throw "flask-restplus is no longer maintained, use flask-restx instead"; # added 2023-02-21
|
flask-restplus = throw "flask-restplus is no longer maintained, use flask-restx instead"; # added 2023-02-21
|
||||||
|
flask_script = flask-script; # added 2023-08-23
|
||||||
flask_sqlalchemy = flask-sqlalchemy; # added 2022-07-20
|
flask_sqlalchemy = flask-sqlalchemy; # added 2022-07-20
|
||||||
flask_testing = flask-testing; # added 2022-04-25
|
flask_testing = flask-testing; # added 2022-04-25
|
||||||
flask_wtf = flask-wtf; # added 2022-05-24
|
flask_wtf = flask-wtf; # added 2022-05-24
|
||||||
|
|
|
@ -3857,7 +3857,7 @@ self: super: with self; {
|
||||||
|
|
||||||
flask-reverse-proxy-fix = callPackage ../development/python-modules/flask-reverse-proxy-fix { };
|
flask-reverse-proxy-fix = callPackage ../development/python-modules/flask-reverse-proxy-fix { };
|
||||||
|
|
||||||
flask_script = callPackage ../development/python-modules/flask-script { };
|
flask-script = callPackage ../development/python-modules/flask-script { };
|
||||||
|
|
||||||
flask-seasurf = callPackage ../development/python-modules/flask-seasurf { };
|
flask-seasurf = callPackage ../development/python-modules/flask-seasurf { };
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue