mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
|
|
pathos,
|
|
pytestCheckHook,
|
|
pytest-mock,
|
|
setuptools,
|
|
tqdm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lox";
|
|
version = "0.12.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BrianPugh";
|
|
repo = "lox";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Iv3ZdfsvFLU6lhlH1n+eQ+KIrXESsnC1S2lVFnKFV08=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ pathos ];
|
|
|
|
pythonRemoveDeps = [ "sphinx-rtd-theme" ];
|
|
|
|
# setup.py requires pytest-runner for setuptools, which is wrong
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace-fail '"pytest-runner",' ""
|
|
'';
|
|
|
|
pythonImportsCheck = [ "lox" ];
|
|
|
|
disabledTests = [
|
|
# Benchmark, performance testing
|
|
"test_perf_lock"
|
|
"test_perf_qlock"
|
|
|
|
# time sensitive testing
|
|
"test_bathroom_example"
|
|
"test_RWLock_r"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-mock
|
|
tqdm
|
|
];
|
|
|
|
meta = {
|
|
description = "Threading and Multiprocessing made easy";
|
|
changelog = "https://github.com/BrianPugh/lox/releases/tag/v${version}";
|
|
homepage = "https://github.com/BrianPugh/lox";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.greg ];
|
|
};
|
|
}
|