pythonPackages.executing: init at 0.4.3
This commit is contained in:
parent
f614e5006f
commit
d0269a3b97
2 changed files with 22 additions and 0 deletions
20
pkgs/development/python-modules/executing/default.nix
Normal file
20
pkgs/development/python-modules/executing/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ lib, buildPythonPackage, fetchzip, pytest, asttokens }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "executing";
|
||||
version = "0.4.3";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/alexmojaki/executing/archive/v${version}.tar.gz";
|
||||
sha256 = "1fqfc26nl703nsx2flzf7x4mgr3rpbd8pnn9c195rca648zhi3nh";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest asttokens ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Get information about what a frame is currently doing, particularly the AST node being executed";
|
||||
homepage = "https://github.com/alexmojaki/executing";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ renatoGarcia ];
|
||||
};
|
||||
}
|
|
@ -3738,6 +3738,8 @@ in {
|
|||
|
||||
eventlet = callPackage ../development/python-modules/eventlet { };
|
||||
|
||||
executing = callPackage ../development/python-modules/executing { };
|
||||
|
||||
exifread = callPackage ../development/python-modules/exifread { };
|
||||
|
||||
fastimport = callPackage ../development/python-modules/fastimport { };
|
||||
|
|
Loading…
Reference in a new issue