ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
22 lines
458 B
Nix
22 lines
458 B
Nix
{ buildPythonPackage
|
|
, lib
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mpyq";
|
|
version = "0.2.5";
|
|
|
|
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 ];
|
|
};
|
|
}
|