24 lines
589 B
Nix
24 lines
589 B
Nix
{ 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 ];
|
|
};
|
|
}
|