nixpkgs/pkgs/development/python-modules/mpyq/default.nix
Frederik Rietdijk ced21f5e1a pythonPackages: remove name attribute`
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`.
2018-06-23 18:14:26 +02:00

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 ];
};
}