13 buildPythonPackage rec {
16 format = "setuptools";
18 disabled = pythonOlder "3.7";
20 src = fetchFromGitHub {
23 rev = "refs/tags/${version}";
24 hash = "sha256-ch4HzQFa95o3HMsi7R0LpPWmhN/Z9EYfrmCdUZLwPSE=";
27 propagatedBuildInputs = [
31 ] ++ lib.optional withGUI kivy;
33 # do not check, as nsz requires producation keys
34 # dumped from a Nintendo Switch.
38 homepage = "https://github.com/nicoboss/nsz";
39 description = "Homebrew compatible NSP/XCI compressor/decompressor";
41 changelog = "https://github.com/nicoboss/nsz/releases/tag/${version}";
42 license = licenses.mit;
43 maintainers = with maintainers; [ eyjhb ];