python3Packages.ndspy: init at 3.0.0
This commit is contained in:
parent
c71b9d7e0a
commit
4d1125e8a8
23
pkgs/development/python-modules/ndspy/default.nix
Normal file
23
pkgs/development/python-modules/ndspy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user