Merge pull request #173965 from fabaff/yappi-bump

python310Packages.yappi. 1.3.3 -> 1.3.5
main
Fabian Affolter 2 years ago committed by GitHub
commit 0e439f91f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      pkgs/development/python-modules/yappi/default.nix

@ -2,24 +2,28 @@
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, gevent , gevent
, isPy27
, python , python
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "yappi"; pname = "yappi";
version = "1.3.2"; version = "1.3.5";
format = "setuptools";
disabled = isPy27; # invalid syntax disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sumerc"; owner = "sumerc";
repo = pname; repo = pname;
rev = "8bf7a650066f104f59c3cae4a189ec15e7d51c8c"; # https://github.com/sumerc/yappi/issues/102
sha256 = "1q8lr9n0lny2g3mssy3mksbl9m4k1kqn1a4yv1hfqsahxdvpw2dp"; rev = "1f41868a2cdfd1e935a5a60808f7bb09c871fa53";
hash = "sha256-XxUAYrDQAY7fD9yTSmoRUmWJEs+L6KSQ0/bIVf/o9ag=";
}; };
patches = [ ./tests.patch ]; patches = [
./tests.patch
];
checkInputs = [ checkInputs = [
gevent gevent
@ -34,8 +38,8 @@ buildPythonPackage rec {
]; ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/sumerc/yappi";
description = "Python profiler that supports multithreading and measuring CPU time"; description = "Python profiler that supports multithreading and measuring CPU time";
homepage = "https://github.com/sumerc/yappi";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ orivej ]; maintainers = with maintainers; [ orivej ];
}; };

Loading…
Cancel
Save