Merge pull request #308734 from fabaff/playwrightcapture-bump

python312Packages.puremagic: 1.21 -> 1.22, python312Packages.playwrightcapture: 1.24.6 -> 1.24.7
This commit is contained in:
Fabian Affolter
2024-05-03 12:30:21 +02:00
committed by GitHub
2 changed files with 17 additions and 17 deletions
@@ -21,7 +21,7 @@
buildPythonPackage rec {
pname = "playwrightcapture";
version = "1.24.6";
version = "1.24.7";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -30,7 +30,7 @@ buildPythonPackage rec {
owner = "Lookyloo";
repo = "PlaywrightCapture";
rev = "refs/tags/v${version}";
hash = "sha256-DFMnlFN9CooQ7HBiw6Ur6KMTMrEw6JxkT6IxlVU+PdY=";
hash = "sha256-mCwV5rgJLns4LvCVwnGAJeqs426GK/8rfp93YKH34VA=";
};
pythonRelaxDeps = [
@@ -1,31 +1,31 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "puremagic";
version = "1.21";
format = "setuptools";
version = "1.22";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "cdgriffith";
repo = pname;
repo = "puremagic";
rev = "refs/tags/${version}";
hash = "sha256-ObJp3+gk1tf1+9wBpvzs0wwP7ptDlfGwX9b4wlCb1RI=";
hash = "sha256-48gtwH6NXj/n3mm313Im1ey4ZH9TbsSFwjsQuBGuqwA=";
};
nativeCheckInputs = [
pytestCheckHook
];
build-system = [ setuptools ];
pythonImportsCheck = [
"puremagic"
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "puremagic" ];
meta = with lib; {
description = "Implementation of magic file detection";