nixpkgs/pkgs/development/python-modules/wasm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
707 B
Nix
Raw Normal View History

2020-10-18 20:19:47 +00:00
{ buildPythonPackage
, fetchPypi
2022-04-01 02:07:01 +00:00
, pythonAtLeast
2020-10-18 20:19:47 +00:00
, lib
}:
buildPythonPackage rec {
pname = "wasm";
version = "1.2";
2022-04-01 02:07:01 +00:00
disabled = pythonAtLeast "3.10"; # project is abandoned, remove we whe move to py310/311
2020-10-18 20:19:47 +00:00
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 ];
};
}