Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mpyq / default.nix
blobf23feb21f054e8921560de1a391ba44640c41b38
1 { buildPythonPackage
2 , lib
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "mpyq";
8   version = "0.2.5";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "01q0xh2fy3zzsrfr45d2ypj4whs7s060cy1rnprg6sg55fbgbaih";
14   };
16   meta = {
17     description = "A Python library for extracting MPQ (MoPaQ) files.";
18     mainProgram = "mpyq";
19     homepage = "https://github.com/eagleflo/mpyq";
20     license = lib.licenses.bsd2;
21     maintainers = with lib.maintainers; [ ];
22   };