Merge pull request #203965 from r-ryantm/auto-update/python310Packages.pymunk

python310Packages.pymunk: 6.3.0 -> 6.4.0
This commit is contained in:
Fabian Affolter
2022-12-02 10:45:39 +01:00
committed by GitHub
@@ -5,20 +5,27 @@
, python
, cffi
, pytestCheckHook
, pythonOlder
, ApplicationServices
}:
buildPythonPackage rec {
pname = "pymunk";
version = "6.3.0";
version = "6.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "sha256-er0+HuCQw2FPeyuBc1BVdutmidYzcKIBqdeteqwsXiA=";
hash = "sha256-YNzZ/wQz5s5J5ctXekNo0FksRoX03rZE1wXIghYcck4=";
};
propagatedBuildInputs = [ cffi ];
propagatedBuildInputs = [
cffi
];
buildInputs = lib.optionals stdenv.isDarwin [
ApplicationServices
];
@@ -27,15 +34,22 @@ buildPythonPackage rec {
${python.interpreter} setup.py build_ext --inplace
'';
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytestCheckHook
];
pytestFlagsArray = [
"pymunk/tests"
];
pythonImportsCheck = [ "pymunk" ];
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;