Skip to content

Commit

Permalink
python3Packages.pymunk: 6.5.2-> 6.9.0, convert to pyproject, fix cross (
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada authored Dec 29, 2024
2 parents 5a9fe1f + c5e1b99 commit 8de75d1
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions pkgs/development/python-modules/pymunk/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
buildPythonPackage,
fetchPypi,
python,
setuptools,
cffi,
pytestCheckHook,
pythonOlder,
Expand All @@ -12,18 +13,21 @@

buildPythonPackage rec {
pname = "pymunk";
version = "6.5.2";
format = "setuptools";
version = "6.9.0";
pyproject = true;

disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";

src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-AV6upaZcnbKmQm9tTItRB6LpckappjdHvMH/awn/KeE=";
hash = "sha256-dl98VhqFmhtWW8UXpHzDmS1iWOhg+RdMUzAzwhivY8M=";
};

propagatedBuildInputs = [ cffi ];
nativeBuildInputs = [ cffi ];

build-system = [ setuptools ];

dependencies = [ cffi ];

buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ ApplicationServices ];

Expand Down

0 comments on commit 8de75d1

Please sign in to comment.