fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
32 lines
723 B
Nix
32 lines
723 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
pycryptodomex,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyctr";
|
|
version = "0.7.5";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-fiDJWcypFabnUoS313f56ypDuDrLASHrkk0Em8bymmw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pycryptodomex ];
|
|
|
|
pythonImportsCheck = [ "pyctr" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library to interact with Nintendo 3DS files";
|
|
homepage = "https://github.com/ihaveamac/pyctr";
|
|
changelog = "https://github.com/ihaveamac/pyctr/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ rileyinman ];
|
|
};
|
|
}
|