1{ lib, buildPythonPackage, fetchzip, pytest, asttokens }:
2
3buildPythonPackage rec {
4 pname = "executing";
5 version = "0.4.3";
6
7 src = fetchzip {
8 url = "https://github.com/alexmojaki/executing/archive/v${version}.tar.gz";
9 sha256 = "1fqfc26nl703nsx2flzf7x4mgr3rpbd8pnn9c195rca648zhi3nh";
10 };
11
12 checkInputs = [ pytest asttokens ];
13
14 meta = with lib; {
15 description = "Get information about what a frame is currently doing, particularly the AST node being executed";
16 homepage = "https://github.com/alexmojaki/executing";
17 license = licenses.mit;
18 maintainers = with maintainers; [ renatoGarcia ];
19 };
20}