blob: bf72bf6b3a522f66d7d54043af3873b06c3a31c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, pycryptodomex }:
buildPythonPackage rec {
pname = "pyctr";
version = "0.6.0";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-05lMcsIeJIHI3LwHQTjr4M+bn1FG+GQscuGq34XxjK8=";
};
propagatedBuildInputs = [ pycryptodomex ];
pythonImportsCheck = [ "pyctr" ];
meta = with lib; {
description = "Python library to interact with Nintendo 3DS files";
license = licenses.mit;
maintainers = with maintainers; [ rileyinman ];
homepage = "https://github.com/ihaveamac/pyctr";
};
}
|