lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

mpyq: init at 0.2.5

+24
+22
pkgs/development/python-modules/mpyq/default.nix
··· 1 + { buildPythonPackage 2 + , lib 3 + , fetchPypi 4 + }: 5 + 6 + buildPythonPackage rec { 7 + pname = "mpyq"; 8 + version = "0.2.5"; 9 + name = "${pname}-${version}"; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + sha256 = "01q0xh2fy3zzsrfr45d2ypj4whs7s060cy1rnprg6sg55fbgbaih"; 14 + }; 15 + 16 + meta = { 17 + description = "A Python library for extracting MPQ (MoPaQ) files."; 18 + homepage = "https://github.com/eagleflo/mpyq"; 19 + license = lib.licenses.bsd2; 20 + maintainers = with lib.maintainers; [ danharaj ]; 21 + }; 22 + }
+2
pkgs/top-level/python-packages.nix
··· 3323 3323 }; 3324 3324 }; 3325 3325 3326 + mpyq = callPackage ../development/python-modules/mpyq { }; 3327 + 3326 3328 mxnet = buildPythonPackage rec { 3327 3329 inherit (pkgs.mxnet) name version src meta; 3328 3330