python310Packages.wsme: Normalize attribute, pname, dirname

This commit is contained in:
Martin Weinelt 2023-02-19 19:45:59 +00:00
parent 71d6e21670
commit 0347d27afa
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
3 changed files with 5 additions and 3 deletions

View File

@ -21,13 +21,14 @@
}:
buildPythonPackage rec {
pname = "WSME";
pname = "wsme";
version = "0.11.0";
disabled = pythonAtLeast "3.9";
src = fetchPypi {
inherit pname version;
pname = "WSME";
inherit version;
sha256 = "bd2dfc715bedcc8f4649611bc0c8a238f483dc01cff7102bc1efa6bea207b64b";
};

View File

@ -274,6 +274,7 @@ mapAliases ({
weakrefmethod = throw "weakrefmethod was removed since it's not needed in Python >= 3.4"; # added 2022-12-01
webapp2 = throw "webapp2 is unmaintained since 2012"; # added 2022-05-29
websocket_client = websocket-client; # added 2021-06-15
WSME = wsme; # added 2023-02-19
xenomapper = throw "xenomapper was moved to pkgs.xenomapper"; # added 2021-12-31
zc-buildout221 = zc-buildout; # added 2021-07-21
zc_buildout_nix = throw "zc_buildout_nix was pinned to a version no longer compatible with other modules";

View File

@ -12404,7 +12404,7 @@ self: super: with self; {
wsgitools = callPackage ../development/python-modules/wsgitools { };
WSME = callPackage ../development/python-modules/WSME { };
wsme = callPackage ../development/python-modules/wsme { };
wsnsimpy = callPackage ../development/python-modules/wsnsimpy { };