Unverified Commit 7c5d339b authored by Yongun Seong's avatar Yongun Seong
Browse files

python3Packages.wasm: remove

parent 8a89abcb
Loading
Loading
Loading
Loading
+0 −30
Original line number Diff line number Diff line
{ 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 ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -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;