nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.pytest-codspeed: 3.2.0 -> 4.0.0

https://github.com/CodSpeedHQ/pytest-codspeed/releases/tag/v4.0.0

This commit was automatically generated using update-python-libraries.

+18 -2
+18 -2
pkgs/development/python-modules/pytest-codspeed/default.nix
··· 16 16 setuptools, 17 17 }: 18 18 19 + let 20 + instrument-hooks = fetchFromGitHub { 21 + owner = "CodSpeedHQ"; 22 + repo = "instrument-hooks"; 23 + rev = "b003e5024d61cfb784d6ac6f3ffd7d61bf7b9ec9"; 24 + hash = "sha256-JTSH4wOpOGJ97iV6sagiRUu8d3sKM2NJRXcB3NmozNQ="; 25 + }; 26 + in 27 + 19 28 buildPythonPackage rec { 20 29 pname = "pytest-codspeed"; 21 - version = "3.2.0"; 30 + version = "4.0.0"; 22 31 pyproject = true; 23 32 24 33 src = fetchFromGitHub { 25 34 owner = "CodSpeedHQ"; 26 35 repo = "pytest-codspeed"; 27 36 tag = "v${version}"; 28 - hash = "sha256-SNVJtnanaSQTSeX3EFG+21GFC1WFCQTbaNyi7QjQROw="; 37 + hash = "sha256-5fdG7AEiLD3ZZzU/7zBK0+LDacTZooyDUo+FefcE4uQ="; 29 38 }; 39 + 40 + postPatch = '' 41 + pushd src/pytest_codspeed/instruments/hooks 42 + rmdir instrument-hooks 43 + ln -nsf ${instrument-hooks} instrument-hooks 44 + popd 45 + ''; 30 46 31 47 build-system = [ hatchling ]; 32 48