mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
25 lines
773 B
Nix
25 lines
773 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyprof2calltree";
|
|
version = "1.4.5";
|
|
format = "setuptools";
|
|
|
|
# Fetch from GitHub because the PyPi packaged version does not
|
|
# include all test files.
|
|
src = fetchFromGitHub {
|
|
owner = "pwaller";
|
|
repo = "pyprof2calltree";
|
|
rev = "v" + version;
|
|
sha256 = "0akighssiswfhi5285rrj37am6flg3ip17c34bayq3r8yyk1iciy";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Help visualize profiling data from cProfile with kcachegrind and qcachegrind";
|
|
homepage = "https://github.com/pwaller/pyprof2calltree";
|
|
changelog = "https://github.com/pwaller/pyprof2calltree/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sfrijters ];
|
|
};
|
|
}
|