Files
nixpkgs/pkgs/development/python-modules/ndindex/default.nix
T
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

55 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
cython,
# optional
numpy,
# tests
hypothesis,
pytest-cov,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "ndindex";
version = "1.8";
format = "setuptools";
src = fetchFromGitHub {
owner = "Quansight-Labs";
repo = "ndindex";
rev = "refs/tags/${version}";
hash = "sha256-F52ly3NkrZ0H9XoomMqmWfLl+8X0z26Yx67DB8DUqyU=";
};
nativeBuildInputs = [ cython ];
postPatch = ''
substituteInPlace pytest.ini \
--replace "--cov=ndindex/ --cov-report=term-missing --flakes" ""
'';
passthru.optional-dependencies.arrays = [ numpy ];
pythonImportsCheck = [ "ndindex" ];
nativeCheckInputs = [
hypothesis
pytest-cov # uses cov markers
pytestCheckHook
] ++ passthru.optional-dependencies.arrays;
meta = with lib; {
description = "";
homepage = "https://github.com/Quansight-Labs/ndindex";
changelog = "https://github.com/Quansight-Labs/ndindex/releases/tag/${version}";
license = licenses.mit;
maintainers = [ ];
};
}