nixpkgs/pkgs/development/python-modules/cramjam/default.nix
2023-01-05 13:20:52 +01: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;
checkInputs = [
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 ];
};
}