nixpkgs/pkgs/development/python-modules/blosc2/default.nix
Robert Schütz f6b69b23c9 python310Packages.blosc2: remove pytest from runtime-requirements.txt
Transitive dependencies should not require pytest.
2023-03-15 20:03:04 -07:00

76 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
# build-system
, setuptools
, scikit-build
, cython
, cmake
, ninja
# propagates
, msgpack
, ndindex
, numpy
, py-cpuinfo
, rich
# tests
, psutil
, pytestCheckHook
, torch
}:
buildPythonPackage rec {
pname = "blosc2";
version = "2.1.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "Blosc";
repo = "python-blosc2";
rev = "refs/tags/v${version}";
fetchSubmodules = true;
hash = "sha256-nbPMLkTye0/Q05ubE35LssN677sUIQErPTxjAtSuGgI=";
};
postPatch = ''
substituteInPlace requirements-runtime.txt \
--replace "pytest" ""
'';
nativeBuildInputs = [
cmake
cython
ninja
numpy
scikit-build
setuptools
];
dontUseCmakeConfigure = true;
propagatedBuildInputs = [
msgpack
ndindex
numpy
py-cpuinfo
rich
];
nativeCheckInputs = [
psutil
pytestCheckHook
torch
];
meta = with lib; {
description = "Python wrapper for the extremely fast Blosc2 compression library";
homepage = "https://github.com/Blosc/python-blosc2";
changelog = "https://github.com/Blosc/python-blosc2/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}