Files
nixpkgs/pkgs/development/python-modules/mpyq/default.nix

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

25 lines
480 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildPythonPackage,
lib,
fetchPypi,
}:
buildPythonPackage rec {
pname = "mpyq";
version = "0.2.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "01q0xh2fy3zzsrfr45d2ypj4whs7s060cy1rnprg6sg55fbgbaih";
};
meta = {
description = "Python library for extracting MPQ (MoPaQ) files";
mainProgram = "mpyq";
homepage = "https://github.com/eagleflo/mpyq";
license = lib.licenses.bsd2;
maintainers = [ ];
};
}