mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
pythonPackages.wasm init at 1.2
This commit is contained in:
parent
ca9a626d54
commit
0618565e6f
27
pkgs/development/python-modules/wasm/default.nix
Normal file
27
pkgs/development/python-modules/wasm/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user