nixpkgs/pkgs/development/python-modules/cramjam/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

75 lines
1.3 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, rustPlatform
, stdenv
, libiconv
, brotli
, hypothesis
, lz4
, memory_profiler
, numpy
, py
, pytest-benchmark
, pytestCheckHook
, python-snappy
, zstd
}:
buildPythonPackage rec {
pname = "cramjam";
version = "2.6.2.post1";
format = "pyproject";
src = fetchFromGitHub {
owner = "milesgranger";
repo = "pyrus-cramjam";
rev = "refs/tags/v${version}";
hash = "sha256-KU1JVNEQJadXNiIWTvI33N2NSq994xoKxcAGGezFjaI=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
hash = "sha256-w1bEf+etLgR/YOyLmC3lFtO9fqAx8z2aul/XIKUQb5k=";
};
nativeBuildInputs = with rustPlatform; [
cargoSetupHook
maturinBuildHook
];
buildInputs = lib.optional stdenv.isDarwin libiconv;
nativeCheckInputs = [
brotli
hypothesis
lz4
memory_profiler
numpy
py
pytest-benchmark
pytestCheckHook
python-snappy
zstd
];
pytestFlagsArray = [
"--benchmark-disable"
];
disabledTestPaths = [
"benchmarks/test_bench.py"
];
pythonImportsCheck = [
"cramjam"
];
meta = with lib; {
description = "Thin Python bindings to de/compression algorithms in Rust";
homepage = "https://github.com/milesgranger/pyrus-cramjam";
license = with licenses; [ mit ];
maintainers = with maintainers; [ veprbl ];
};
}