pythonPackages.pytmx: 3.24.0 -> 3.25.0 (#121485)
This commit is contained in:
parent
a376d4944c
commit
f7906ec8b2
@ -5,20 +5,26 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pytmx";
|
pname = "pytmx";
|
||||||
version = "3.24.0";
|
version = "3.25";
|
||||||
|
|
||||||
disabled = isPy27;
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
# The release was not git tagged.
|
|
||||||
owner = "bitcraft";
|
owner = "bitcraft";
|
||||||
repo = "PyTMX";
|
repo = "PyTMX";
|
||||||
rev = "eb96efea30d57b731654b2a167d86b8b553b147d";
|
rev = version;
|
||||||
sha256 = "1g1j4w75zw76p5f8m5v0hdigdlva2flf0ngyk8nvqcwzcl5vq5wc";
|
sha256 = "0v07zhvzvl2qcqhjzgfzm8hgayq38gaqcxxkyhlq9n0hlk93nm97";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pygame pyglet pysdl2 six ];
|
propagatedBuildInputs = [ pygame pyglet pysdl2 six ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"pytmx.pytmx"
|
||||||
|
"pytmx.util_pygame"
|
||||||
|
"pytmx.util_pyglet"
|
||||||
|
"pytmx.util_pysdl2"
|
||||||
|
];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
# Change into the test directory due to a relative resource path.
|
# Change into the test directory due to a relative resource path.
|
||||||
cd tests/pytmx
|
cd tests/pytmx
|
||||||
@ -28,7 +34,7 @@ buildPythonPackage rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/bitcraft/PyTMX";
|
homepage = "https://github.com/bitcraft/PyTMX";
|
||||||
description = "Python library to read Tiled Map Editor's TMX maps";
|
description = "Python library to read Tiled Map Editor's TMX maps";
|
||||||
license = licenses.lgpl3;
|
license = licenses.lgpl3Plus;
|
||||||
maintainers = with maintainers; [ oxzi ];
|
maintainers = with maintainers; [ oxzi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user