mpyq: init at 0.2.5
This commit is contained in:
parent
08508f5319
commit
1327d09793
22
pkgs/development/python-modules/mpyq/default.nix
Normal file
22
pkgs/development/python-modules/mpyq/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -3323,6 +3323,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
mpyq = callPackage ../development/python-modules/mpyq { };
|
||||
|
||||
mxnet = buildPythonPackage rec {
|
||||
inherit (pkgs.mxnet) name version src meta;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user