mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
43 lines
861 B
Nix
43 lines
861 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonRelaxDepsHook
|
|
, docopt
|
|
, para
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mwcli";
|
|
version = "0.0.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-ADMb0P8WtXIcnGJ02R4l/TVfRewHc8ig45JurAWHGaA=";
|
|
};
|
|
|
|
# Prevent circular dependency
|
|
pythonRemoveDeps = [
|
|
"mwxml"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
docopt
|
|
para
|
|
];
|
|
|
|
# Tests require mwxml which itself depends on this package (circular dependency)
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A set of helper functions and classes for mediawiki-utilities command-line utilities";
|
|
homepage = "https://github.com/mediawiki-utilities/python-mwcli";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ GaetanLepage ];
|
|
};
|
|
}
|