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

49 lines
1 KiB
Nix
Raw Normal View History

{
stdenv,
lib,
buildPythonPackage,
fetchPypi,
python,
cffi,
pytestCheckHook,
pythonOlder,
ApplicationServices,
}:
buildPythonPackage rec {
pname = "pymunk";
version = "6.5.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-AV6upaZcnbKmQm9tTItRB6LpckappjdHvMH/awn/KeE=";
};
propagatedBuildInputs = [ cffi ];
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ ApplicationServices ];
preBuild = ''
${python.pythonOnBuildForHost.interpreter} setup.py build_ext --inplace
'';
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "pymunk/tests" ];
pythonImportsCheck = [ "pymunk" ];
meta = with lib; {
description = "2d physics library";
homepage = "https://www.pymunk.org";
changelog = "https://github.com/viblo/pymunk/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ emilytrau ];
platforms = platforms.unix;
};
}