48 lines
988 B
Nix
48 lines
988 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
setuptools,
|
||
|
cython,
|
||
|
pytestCheckHook,
|
||
|
pythonOlder,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "cymem";
|
||
|
version = "2.0.8";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "explosion";
|
||
|
repo = "cymem";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-e4lgV39lwC2Goqmd8Jjra+znuCpxsv2IsRXfFbQkGN8=";
|
||
|
};
|
||
|
|
||
|
build-system = [
|
||
|
setuptools
|
||
|
cython
|
||
|
];
|
||
|
|
||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||
|
|
||
|
preCheck = ''
|
||
|
# remove src module, so tests use the installed module instead
|
||
|
mv ./cymem/tests ./tests
|
||
|
rm -r ./cymem
|
||
|
'';
|
||
|
|
||
|
pythonImportsCheck = [ "cymem" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Cython memory pool for RAII-style memory management";
|
||
|
homepage = "https://github.com/explosion/cymem";
|
||
|
changelog = "https://github.com/explosion/cymem/releases/tag/v${version}";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ nickcao ];
|
||
|
};
|
||
|
}
|