1{ buildPythonPackage
2, fetchPypi
3, pythonAtLeast
4, lib
5}:
6
7buildPythonPackage rec {
8 pname = "wasm";
9 version = "1.2";
10
11 disabled = pythonAtLeast "3.10"; # project is abandoned, remove we whe move to py310/311
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "179xcinfc35xgk0bf9y58kwxzymzk7c1p58w6khmqfiqvb91j3r8";
16 };
17
18 # there are no tests
19 doCheck = false;
20
21 pythonImportsCheck = [ "wasm" ];
22
23 meta = with lib; {
24 description = "WebAssembly decoder and disassembler";
25 homepage = "https://github.com/athre0z/wasm";
26 changelog = "https://github.com/athre0z/wasm/blob/master/CHANGELOG.md";
27 license = licenses.mit;
28 maintainers = with maintainers; [ arturcygan ];
29 };
30}