about summary refs log tree commit diff
path: root/pkgs/development/python-modules/yappi/default.nix
blob: 6ab776d23072a74de0dbf82876363fea1a6c4a37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, fetchPypi, nose }:

buildPythonPackage rec {
  pname = "yappi";
  version = "1.2.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b8db9bc607610d6da4e27e87ec828ebddec4bdaac89ca07ebfe9a153b0641580";
  };

  patches = [ ./tests.patch ];

  checkInputs = [ nose ];

  meta = with lib; {
    homepage = "https://github.com/sumerc/yappi";
    description = "Python profiler that supports multithreading and measuring CPU time";
    license = licenses.mit;
    maintainers = with maintainers; [ orivej ];
  };
}