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

40 lines
793 B
Nix
Raw Normal View History

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