mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python310Packages.pyinstrument: init at 4.1.1
This commit is contained in:
parent
9621dbfbd0
commit
5d15ee6864
31
pkgs/development/python-modules/pyinstrument/default.nix
Normal file
31
pkgs/development/python-modules/pyinstrument/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user