Merge pull request #66712 from SFrijters/pyprof2calltree-as-package

pyprof2calltree: move to python-packages
This commit is contained in:
Jörg Thalheim 2019-08-17 13:55:17 +01:00 committed by GitHub
commit 40e86556d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{ lib, buildPythonApplication, fetchFromGitHub }:
{ lib, buildPythonPackage, fetchFromGitHub }:
buildPythonApplication rec {
buildPythonPackage rec {
pname = "pyprof2calltree";
version = "1.4.4";

View file

@ -9788,7 +9788,7 @@ in
pprof = callPackage ../development/tools/profiling/pprof { };
pyprof2calltree = pythonPackages.callPackage ../development/tools/profiling/pyprof2calltree { };
pyprof2calltree = with python3Packages; toPythonApplication pyprof2calltree;
prelink = callPackage ../development/tools/misc/prelink { };

View file

@ -6168,6 +6168,8 @@ in {
wget = callPackage ../development/python-modules/wget { };
runway-python = callPackage ../development/python-modules/runway-python { };
pyprof2calltree = callPackage ../development/python-modules/pyprof2calltree { };
});
in fix' (extends overrides packages)