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

40 lines
793 B
Nix
Raw Normal View History

{ lib
2017-05-14 22:25:14 +00:00
, buildPythonPackage
, fetchFromGitHub
, cython
, python
}:
2019-12-21 07:06:17 +00:00
2017-05-14 22:25:14 +00:00
buildPythonPackage rec {
pname = "cymem";
2019-12-21 07:06:17 +00:00
version = "2.0.3";
2017-05-14 22:25:14 +00:00
src = fetchFromGitHub {
owner = "explosion";
repo = "cymem";
2018-10-20 10:04:59 +00:00
rev = "v${version}";
2019-12-21 07:06:17 +00:00
sha256 = "0cqz6whq4zginxjnh4cfqlsh535p4qz295ymvjchp71fv8mz11f6";
2017-05-14 22:25:14 +00:00
};
propagatedBuildInputs = [
cython
2017-05-14 22:25:14 +00:00
];
2018-10-20 10:04:59 +00:00
prePatch = ''
substituteInPlace setup.py \
--replace "wheel>=0.32.0,<0.33.0" "wheel>=0.31.0"
'';
2017-05-14 22:25:14 +00:00
checkPhase = ''
cd cymem/tests
${python.interpreter} -m unittest discover -p "*test*"
'';
meta = with lib; {
2017-05-14 22:25:14 +00:00
description = "Cython memory pool for RAII-style memory management";
homepage = "https://github.com/explosion/cymem";
2017-05-14 22:25:14 +00:00
license = licenses.mit;
maintainers = with maintainers; [ sdll ];
};
}