mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 05:23:16 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
54 lines
982 B
Nix
54 lines
982 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pygame
|
|
, pyglet
|
|
, pysdl2
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytmx";
|
|
version = "3.31";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bitcraft";
|
|
repo = "PyTMX";
|
|
rev = "v${version}";
|
|
sha256 = "05v8zv06fymvgv332g48kcing4k4ncy2iwgpy1qmxrpin1avyynx";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pygame
|
|
pyglet
|
|
pysdl2
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pytmx.pytmx"
|
|
"pytmx.util_pygame"
|
|
"pytmx.util_pyglet"
|
|
"pytmx.util_pysdl2"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# AssertionError on the property name
|
|
"test_contains_reserved_property_name"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/bitcraft/PyTMX";
|
|
description = "Python library to read Tiled Map Editor's TMX maps";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ oxzi ];
|
|
};
|
|
}
|