12 buildPythonPackage rec {
17 disabled = pythonOlder "3.10";
19 src = fetchFromGitHub {
22 rev = "refs/tags/v${version}";
23 hash = "sha256-BnTr3rLehP5uhzXWXKPaXcJCWW2ofk5N8amqoEUmlWo=";
30 pythonRelaxDeps = [ "packaging" ];
32 dependencies = [ packaging ];
34 pythonImportsCheck = [ "rmscene" ];
42 changelog = "https://github.com/ricklupton/rmscene/blob/${src.rev}/README.md#changelog";
43 description = "Read v6 .rm files from the reMarkable tablet";
44 homepage = "https://github.com/ricklupton/rmscene";
45 license = lib.licenses.mit;
46 maintainers = with lib.maintainers; [ dotlambda ];