Merge release-23.05 into staging-next-23.05

This commit is contained in:
github-actions[bot]
2023-08-28 00:12:29 +00:00
committed by GitHub
5 changed files with 22 additions and 21 deletions

View File

@@ -90,11 +90,11 @@ in
stdenv.mkDerivation rec {
pname = "brave";
version = "1.57.47";
version = "1.57.53";
src = fetchurl {
url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb";
sha256 = "sha256-u2xC+Q6tcg989S0zM2flRRiCu7kLSv1/y3N2EvFxiwM=";
sha256 = "sha256-vySznLCjEqol3FOZHvDpY9LY1UG2ExOu/shu8suKuoM=";
};
dontConfigure = true;

View File

@@ -24,15 +24,15 @@
}:
let
id = "118976581";
id = "123097753";
in
stdenvNoCC.mkDerivation rec {
pname = "multiviewer-for-f1";
version = "1.24.2";
version = "1.26.1";
src = fetchurl {
url = "https://releases.multiviewer.dev/download/${id}/multiviewer-for-f1_${version}_amd64.deb";
sha256 = "sha256-zll639fQFdrNvIj/4ECqEGxQw4VgfERGlti7opSmSi0=";
sha256 = "sha256-VS1oDqib0XCEVDVt72GGz1ikwZJYnn6enAylh54PrDI=";
};
nativeBuildInputs = [

View File

@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "mechanicalsoup";
version = "1.2.0";
version = "1.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -21,10 +21,18 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "MechanicalSoup";
repo = "MechanicalSoup";
rev = "v${version}";
hash = "sha256-Q5oDAgAZYYUYqjDByXNXFNVKmRyjzIGVE4LN9j8vk4c=";
rev = "refs/tags/v${version}";
hash = "sha256-iZ2nwBxikf0cTTlxzcGvHJim4N6ZEqIhlK7t1WAYdms=";
};
postPatch = ''
# Is in setup_requires but not used in setup.py
substituteInPlace setup.py \
--replace "'pytest-runner'" ""
substituteInPlace setup.cfg \
--replace " --cov --cov-config .coveragerc --flake8" ""
'';
propagatedBuildInputs = [
beautifulsoup4
lxml
@@ -38,14 +46,6 @@ buildPythonPackage rec {
requests-mock
];
postPatch = ''
# Is in setup_requires but not used in setup.py
substituteInPlace setup.py \
--replace "'pytest-runner'" ""
substituteInPlace setup.cfg \
--replace " --cov --cov-config .coveragerc --flake8" ""
'';
pythonImportsCheck = [
"mechanicalsoup"
];
@@ -53,6 +53,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python library for automating interaction with websites";
homepage = "https://github.com/hickford/MechanicalSoup";
changelog = "https://github.com/MechanicalSoup/MechanicalSoup/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ jgillich fab ];
};

View File

@@ -5,16 +5,16 @@
buildGoModule rec {
pname = "act";
version = "0.2.45";
version = "0.2.49";
src = fetchFromGitHub {
owner = "nektos";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-mp5+hDSZsp46WMCCqVoorKSHeoQY/+ORtj0fNrKsFWI=";
hash = "sha256-dJt8XrcB1rYt6os3enLQz0YuqXNIqQTh85BIJdXwi2A=";
};
vendorHash = "sha256-37fHVy4NLhWyk1yD9zSNnZoVVyd2QizzDCDbiNJCBlc=";
vendorHash = "sha256-QPpwYec2Y0x/VOsiTWvObKrNWGGE7dj8Cl5eM2l8ibk=";
doCheck = false;

View File

@@ -11,11 +11,11 @@ assert usePcre -> pcre != null;
stdenv.mkDerivation rec {
pname = "haproxy";
version = "2.7.8";
version = "2.7.10";
src = fetchurl {
url = "https://www.haproxy.org/download/${lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz";
sha256 = "sha256-FfInaXG7uoxH2GzILr/G7DPjrvLkVlBYsuSVDAe451w=";
hash = "sha256-vhddzB9q1+oXQmJJODm/LmMqPdffE33MpKuIKuAMdJA=";
};
buildInputs = [ openssl zlib libxcrypt ]