python3Packages.wasm: remove

This commit is contained in:
Yongun Seong 2023-05-20 05:35:09 +09:00
parent 8a89abcb78
commit 7c5d339b09
No known key found for this signature in database
3 changed files with 1 additions and 32 deletions

View file

@ -1,30 +0,0 @@
{ buildPythonPackage
, fetchPypi
, pythonAtLeast
, lib
}:
buildPythonPackage rec {
pname = "wasm";
version = "1.2";
disabled = pythonAtLeast "3.10"; # project is abandoned, remove we whe move to py310/311
src = fetchPypi {
inherit pname version;
sha256 = "179xcinfc35xgk0bf9y58kwxzymzk7c1p58w6khmqfiqvb91j3r8";
};
# there are no tests
doCheck = false;
pythonImportsCheck = [ "wasm" ];
meta = with lib; {
description = "WebAssembly decoder and disassembler";
homepage = "https://github.com/athre0z/wasm";
changelog = "https://github.com/athre0z/wasm/blob/master/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ arturcygan ];
};
}

View file

@ -306,6 +306,7 @@ mapAliases ({
uproot3-methods = throw "uproot3-methods has been removed"; # added 2022-12-13
virtual-display = throw "virtual-display has been renamed to PyVirtualDisplay"; # added 2023-01-07
Wand = wand; # added 2022-11-13
wasm = throw "wasm has been removed because it no longer builds and is unmaintained"; # added 2023-05-20
WazeRouteCalculator = wazeroutecalculator; # added 2021-09-29
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

View file

@ -12786,8 +12786,6 @@ self: super: with self; {
wasserstein = callPackage ../development/python-modules/wasserstein { };
wasm = callPackage ../development/python-modules/wasm { };
wasmerPackages = pkgs.recurseIntoAttrs (callPackage ../development/python-modules/wasmer { });
inherit (self.wasmerPackages) wasmer wasmer-compiler-cranelift wasmer-compiler-llvm wasmer-compiler-singlepass;