pythonPackages.wasm init at 1.2

This commit is contained in:
Artur Cygan 2020-10-18 22:19:47 +02:00
parent ca9a626d54
commit 0618565e6f
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ buildPythonPackage
, fetchPypi
, lib
}:
buildPythonPackage rec {
pname = "wasm";
version = "1.2";
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

@ -7903,6 +7903,8 @@ in {
wasabi = callPackage ../development/python-modules/wasabi { };
wasm = callPackage ../development/python-modules/wasm { };
wasmer = callPackage ../development/python-modules/wasmer { };
watchdog = callPackage ../development/python-modules/watchdog { };