Files
nixpkgs/pkgs/development/python-modules/imaplib2/default.nix
T
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
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
2023-12-07 17:46:49 +01:00

35 lines
683 B
Nix

{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "imaplib2";
version = "3.6";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "jazzband";
repo = "imaplib2";
rev = "v${version}";
sha256 = "14asi3xnvf4bb394k5j8c3by6svvmrr75pawzy6kaax5jx0h793m";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "imaplib2" ];
meta = with lib; {
description = "A threaded Python IMAP4 client";
homepage = "https://github.com/jazzband/imaplib2";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}