python3Packages.extension-helpers: 1.2.0 -> 1.4.0

https://github.com/astropy/extension-helpers/blob/v1.4.0/CHANGES.md

This commit was automatically generated using update-python-libraries.

Changed files
+11 -5
pkgs
development
python-modules
extension-helpers
+11 -5
pkgs/development/python-modules/extension-helpers/default.nix
···
lib,
buildPythonPackage,
fetchFromGitHub,
-
pip,
+
build,
+
cython,
pytestCheckHook,
pythonOlder,
setuptools-scm,
setuptools,
tomli,
+
wheel,
}:
buildPythonPackage rec {
pname = "extension-helpers";
-
version = "1.2.0";
+
version = "1.4.0";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "astropy";
repo = "extension-helpers";
tag = "v${version}";
-
hash = "sha256-qneulhSYB2gYiCdgoU7Dqg1luLWhVouFVihcKeOA37E=";
+
hash = "sha256-coSgaPoz93CqJRb65xYs1sNOwoGhcxWGJF7Jc9N2W1I=";
};
build-system = [
···
dependencies = [ setuptools ] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
nativeCheckInputs = [
+
build
+
cython
pytestCheckHook
-
pip
+
wheel
];
pythonImportsCheck = [ "extension_helpers" ];
···
disabledTests = [
# Test require network access
"test_only_pyproject"
+
# ModuleNotFoundError
+
"test_no_setup_py"
];
meta = with lib; {
description = "Helpers to assist with building Python packages with compiled C/Cython extensions";
homepage = "https://github.com/astropy/extension-helpers";
-
changelog = "https://github.com/astropy/extension-helpers/blob/${version}/CHANGES.md";
+
changelog = "https://github.com/astropy/extension-helpers/blob/${src.tag}/CHANGES.md";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};