python3Packages.ndspy: init at 3.0.0

This commit is contained in:
Konrad Borowski 2021-05-30 21:57:12 +02:00
parent c71b9d7e0a
commit 4d1125e8a8
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, crcmod }:
buildPythonPackage rec {
pname = "ndspy";
version = "3.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "1s0i81gspas22bjwk9vhy3x5sw1svyybk7c2j1ixc77drr9ym20a";
};
propagatedBuildInputs = [ crcmod ];
doCheck = false; # there are no tests
pythonImportsCheck = [ "ndspy" ];
meta = with lib; {
homepage = "https://github.com/RoadrunnerWMC/ndspy";
description = "A Python library for many Nintendo DS file formats";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ xfix ];
};
}

View file

@ -4527,6 +4527,8 @@ in {
ndjson = callPackage ../development/python-modules/ndjson { };
ndspy = callPackage ../development/python-modules/ndspy { };
ndtypes = callPackage ../development/python-modules/ndtypes { };
neo = callPackage ../development/python-modules/neo { };