mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
33afbf39f6
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.
36 lines
983 B
Nix
36 lines
983 B
Nix
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
|
|
, pytestCheckHook, pytest-benchmark, numpy, arrow, ruamel-yaml
|
|
, lz4, cloudpickle
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "construct";
|
|
version = "2.10.68";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
# no tests in PyPI tarball
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-bp/YyRFP0rrBHPyhiqnn6o1iC5l61oedShZ2phGeqaw=";
|
|
};
|
|
|
|
# not an explicit dependency, but it's imported by an entrypoint
|
|
propagatedBuildInputs = [
|
|
lz4
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook numpy arrow ruamel-yaml cloudpickle ];
|
|
|
|
disabledTests = [ "test_benchmarks" ] ++ lib.optionals stdenv.isDarwin [ "test_multiprocessing" ];
|
|
|
|
meta = with lib; {
|
|
description = "Powerful declarative parser (and builder) for binary data";
|
|
homepage = "https://construct.readthedocs.org/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
};
|
|
}
|