nixpkgs/pkgs/development/python-modules/extension-helpers/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.2 KiB
Nix
Raw Permalink Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
pip,
pytestCheckHook,
pythonOlder,
setuptools-scm,
setuptools,
tomli,
}:
buildPythonPackage rec {
pname = "extension-helpers";
version = "1.2.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "astropy";
repo = "extension-helpers";
rev = "refs/tags/v${version}";
hash = "sha256-qneulhSYB2gYiCdgoU7Dqg1luLWhVouFVihcKeOA37E=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [ setuptools ] ++ lib.optionals (pythonOlder "3.11") [ tomli ];
nativeCheckInputs = [
pytestCheckHook
pip
];
pythonImportsCheck = [ "extension_helpers" ];
pytestFlagsArray = [ "extension_helpers/tests" ];
disabledTests = [
# Test require network access
"test_only_pyproject"
];
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";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}