python3Packages.ndspy: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-03-24 09:08:37 +01:00 committed by GitHub
parent b3559b7817
commit 69db43f107
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,17 @@
{ lib, buildPythonPackage, fetchFromGitHub, crcmod, pytestCheckHook }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, crcmod
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "ndspy";
version = "4.0.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "RoadrunnerWMC";
@ -11,13 +20,25 @@ buildPythonPackage rec {
sha256 = "0x3sp10had1mq192m7kgjivvs8kpjagxjgj9d4z95dfjhzzbjh70";
};
propagatedBuildInputs = [ crcmod ];
checkInputs = [ pytestCheckHook ];
preCheck = "cd tests";
propagatedBuildInputs = [
crcmod
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"ndspy"
];
preCheck = ''
cd tests
'';
meta = with lib; {
description = "Python library for many Nintendo DS file formats";
homepage = "https://github.com/RoadrunnerWMC/ndspy";
description = "A Python library for many Nintendo DS file formats";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ xfix ];
};