python310Packages.pyinstrument: init at 4.1.1

This commit is contained in:
Jonas Heinrich 2022-07-02 13:45:49 +02:00 committed by Yt
parent 9621dbfbd0
commit 5d15ee6864
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ stdenv
, lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "pyinstrument";
version = "4.1.1";
src = fetchFromGitHub {
owner = "joerick";
repo = pname;
rev = "v${version}";
hash = "sha256-4gM60UhzN+VnNMTHw6NSU7/LUPHaMgg105D+dO6SDfg=";
};
# Module import recursion
doCheck = false;
pythonImportsCheck = [
"pyinstrument"
];
meta = with lib; {
description = "Call stack profiler for Python";
homepage = "https://github.com/joerick/pyinstrument";
license = licenses.bsd3;
maintainers = with maintainers; [ onny ];
};
}

View File

@ -7547,6 +7547,8 @@ in {
pyinsteon = callPackage ../development/python-modules/pyinsteon { };
pyinstrument = callPackage ../development/python-modules/pyinstrument { };
pyintesishome = callPackage ../development/python-modules/pyintesishome { };
pyipma = callPackage ../development/python-modules/pyipma { };