Merge pull request #250999 from natsukium/pyramid/rename

python310Packages.pyramid_*: rename
This commit is contained in:
Martin Weinelt 2023-10-11 03:07:50 +02:00 committed by GitHub
commit da48a62a6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 22 additions and 14 deletions

View File

@ -7,7 +7,7 @@
, mako
, nose
, pyramid
, pyramid_mako
, pyramid-mako
, pytestCheckHook
, six
, tornado
@ -33,7 +33,7 @@ buildPythonPackage rec {
nose
tornado
pyramid
pyramid_mako
pyramid-mako
pytestCheckHook
];

View File

@ -1,11 +1,12 @@
{ lib, buildPythonPackage, fetchPypi, pytest, beaker, pyramid }:
buildPythonPackage rec {
pname = "pyramid_beaker";
pname = "pyramid-beaker";
version = "0.8";
src = fetchPypi {
inherit pname version;
pname = "pyramid_beaker";
inherit version;
sha256 = "0hflx3qkcdml1mwpq53sz46s7jickpfn0zy0ns2c7j445j66bp3p";
};

View File

@ -5,11 +5,12 @@
}:
buildPythonPackage rec {
pname = "pyramid_exclog";
pname = "pyramid-exclog";
version = "1.1";
src = fetchPypi {
inherit pname version;
pname = "pyramid_exclog";
inherit version;
hash = "sha256-Tl2rYH/GifNfB9w4nG9UIqAQz0O6kujCED/4iZnPKDw=";
};

View File

@ -8,7 +8,7 @@
}:
buildPythonPackage rec {
pname = "pyramid_mako";
pname = "pyramid-mako";
version = "1.1.0";
src = fetchPypi {

View File

@ -5,11 +5,12 @@
}:
buildPythonPackage rec {
pname = "pyramid_multiauth";
pname = "pyramid-multiauth";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
pname = "pyramid-multiauth";
inherit version;
sha256 = "6d8785558e1d0bbe0d0da43e296efc0fbe0de5071d1f9b1091e891f0e4ec9682";
};

View File

@ -282,8 +282,13 @@ mapAliases ({
pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04
PyMVGLive = pymvglive; # added 2023-02-19
pyqt4 = throw "pyqt4 has been removed, because it depended on the long EOL qt4"; # added 2022-06-09
pyramid_beaker = pyramid-beaker; # added 2023-08-23
pyramid_chameleon = pyramid-chameleon; # added 2023-08-23
pyramid_exclog = pyramid-exclog; # added 2023-08-24
pyramid_hawkauth = throw "pyramid_hawkauth has been removed because it is no longer maintained"; # added 2023-02-2
pyramid_jinja2 = pyramid-jinja2; # added 2023-06-06
pyramid_mako = pyramid-mako; # added 2023-08-24
pyramid_multiauth = pyramid-multiauth; # added 2023-08-24
pyreadability = readability-lxml; # added 2022-05-24
pyres = throw "pyres has been removed, since it is abandoned and broken"; # added 2023-06-20
pyroute2-core = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16

View File

@ -10678,19 +10678,19 @@ self: super: with self; {
pyrainbird = callPackage ../development/python-modules/pyrainbird { };
pyramid_beaker = callPackage ../development/python-modules/pyramid_beaker { };
pyramid-beaker = callPackage ../development/python-modules/pyramid-beaker { };
pyramid = callPackage ../development/python-modules/pyramid { };
pyramid_chameleon = callPackage ../development/python-modules/pyramid_chameleon { };
pyramid-chameleon = callPackage ../development/python-modules/pyramid-chameleon { };
pyramid_exclog = callPackage ../development/python-modules/pyramid_exclog { };
pyramid-exclog = callPackage ../development/python-modules/pyramid-exclog { };
pyramid-jinja2 = callPackage ../development/python-modules/pyramid-jinja2 { };
pyramid_mako = callPackage ../development/python-modules/pyramid_mako { };
pyramid-mako = callPackage ../development/python-modules/pyramid-mako { };
pyramid_multiauth = callPackage ../development/python-modules/pyramid_multiauth { };
pyramid-multiauth = callPackage ../development/python-modules/pyramid-multiauth { };
pyrate-limiter = callPackage ../development/python-modules/pyrate-limiter { };