ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pyinstrument / default.nix
blob45425e1d1187860fe5d849bc1dc93c6cf4ecd564
1 { stdenv
2 , lib
3 , buildPythonPackage
4 , fetchFromGitHub
5 }:
7 buildPythonPackage rec {
8   pname = "pyinstrument";
9   version = "4.1.1";
11   src = fetchFromGitHub {
12     owner = "joerick";
13     repo = pname;
14     rev = "v${version}";
15     hash = "sha256-4gM60UhzN+VnNMTHw6NSU7/LUPHaMgg105D+dO6SDfg=";
16   };
18   # Module import recursion
19   doCheck = false;
21   pythonImportsCheck = [
22     "pyinstrument"
23   ];
25   meta = with lib; {
26     description = "Call stack profiler for Python";
27     homepage = "https://github.com/joerick/pyinstrument";
28     license = licenses.bsd3;
29     maintainers = with maintainers; [ onny ];
30   };