My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/wasm/default.nix

30 lines
707 B

{ 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 ];
};
}