depot/third_party/nixpkgs/pkgs/development/python-modules/cymem/default.nix

45 lines
771 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
, cython
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "cymem";
version = "2.0.7";
src = fetchFromGitHub {
owner = "explosion";
repo = "cymem";
rev = "refs/tags/v${version}";
hash = "sha256-lYMRFFMS+ETjWd4xi12ezC8CVLbLJfynmOU1DpYQcck=";
};
propagatedBuildInputs = [
cython
];
nativeCheckInputs = [
pytestCheckHook
];
preCheck = ''
TEMPDIR=$(mktemp -d)
cp -R cymem/tests $TEMPDIR/
pushd $TEMPDIR
'';
postCheck = ''
popd
'';
meta = with lib; {
description = "Cython memory pool for RAII-style memory management";
homepage = "https://github.com/explosion/cymem";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}