at master 480 B view raw
1{ 2 buildPythonPackage, 3 lib, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "mpyq"; 9 version = "0.2.5"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "01q0xh2fy3zzsrfr45d2ypj4whs7s060cy1rnprg6sg55fbgbaih"; 15 }; 16 17 meta = { 18 description = "Python library for extracting MPQ (MoPaQ) files"; 19 mainProgram = "mpyq"; 20 homepage = "https://github.com/eagleflo/mpyq"; 21 license = lib.licenses.bsd2; 22 maintainers = [ ]; 23 }; 24}