Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / mpyq / default.nix
blob94c907c676c49f81ad872f8fb8a84c1ab0af5a1d
1 { buildPythonPackage
2 , lib
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "mpyq";
8   version = "0.2.5";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "01q0xh2fy3zzsrfr45d2ypj4whs7s060cy1rnprg6sg55fbgbaih";
13   };
15   meta = {
16     description = "A Python library for extracting MPQ (MoPaQ) files.";
17     homepage = "https://github.com/eagleflo/mpyq";
18     license = lib.licenses.bsd2;
19     maintainers = with lib.maintainers; [ ];
20   };