nixpkgs/pkgs/development/python-modules/wasm/default.nix
2021-01-08 20:24:15 +01:00

28 lines
599 B
Nix

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