at 22.05-pre 589 B view raw
1{ lib, buildPythonPackage, fetchPypi, crcmod }: 2 3buildPythonPackage rec { 4 pname = "ndspy"; 5 version = "3.0.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1s0i81gspas22bjwk9vhy3x5sw1svyybk7c2j1ixc77drr9ym20a"; 10 }; 11 12 propagatedBuildInputs = [ crcmod ]; 13 14 doCheck = false; # there are no tests 15 pythonImportsCheck = [ "ndspy" ]; 16 17 meta = with lib; { 18 homepage = "https://github.com/RoadrunnerWMC/ndspy"; 19 description = "A Python library for many Nintendo DS file formats"; 20 license = licenses.gpl3Plus; 21 maintainers = with maintainers; [ xfix ]; 22 }; 23}