1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 19:51:17 +00:00

python311Packages.uuid: remove

uuid is a Python standard module
This commit is contained in:
Fabian Affolter 2024-04-18 17:41:04 +02:00
parent ede6e2b78e
commit e3de724ae8
3 changed files with 1 additions and 19 deletions

View file

@ -1,17 +0,0 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "uuid";
version = "1.30";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0gqrjsm85nnkxkmd1vk8350wqj2cigjflnvcydk084n5980cr1qz";
};
meta = with lib; {
description = "UUID object and generation functions (Python 2.3 or higher)";
homepage = "http://zesty.ca/python/";
};
}

View file

@ -518,6 +518,7 @@ mapAliases ({
update_checker = update-checker; # added 2024-01-07
uproot3 = throw "uproot3 has been removed, use uproot instead"; # added 2022-12-13
uproot3-methods = throw "uproot3-methods has been removed"; # added 2022-12-13
uuid = throw "uuid is a Python standard module"; # added 2024-04-18
validictory = throw "validictory has been removed, since it abandoned"; # added 2023-07-07
vega_datasets = vega-datasets; # added 2023-11-04
ViennaRNA = viennarna; # added 2023-08-23

View file

@ -16435,8 +16435,6 @@ self: super: with self; {
utils = callPackage ../development/python-modules/utils { };
uuid = callPackage ../development/python-modules/uuid { };
uvcclient = callPackage ../development/python-modules/uvcclient { };
uvicorn = callPackage ../development/python-modules/uvicorn { };