mpyq: init at 0.2.5

This commit is contained in:
Dan Haraj
2017-11-14 14:29:50 -05:00
parent 08508f5319
commit 1327d09793
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
pname = "mpyq";
version = "0.2.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "01q0xh2fy3zzsrfr45d2ypj4whs7s060cy1rnprg6sg55fbgbaih";
};
meta = {
description = "A Python library for extracting MPQ (MoPaQ) files.";
homepage = "https://github.com/eagleflo/mpyq";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ danharaj ];
};
}