mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
python3Packages.wasm: remove
This commit is contained in:
parent
8a89abcb78
commit
7c5d339b09
@ -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 ];
|
||||
};
|
||||
}
|
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user