blob: 58c85538c2d29e33962f9d7ba900d5093ba0eb73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "ndspy";
version = "4.2.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "RoadrunnerWMC";
repo = "ndspy";
tag = "v${version}";
hash = "sha256-PQONVEuh5Fg2LHr4gq0XTGcOpps/s9FSgoyDn4BCcik=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ndspy" ];
preCheck = ''
cd tests
'';
meta = {
description = "Python library for many Nintendo DS file formats";
homepage = "https://github.com/RoadrunnerWMC/ndspy";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ marius851000 ];
};
}
|