blob: cae321df5c0b4b7336df1ec4cb087b6879a861cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
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 = [ ];
};
}
|