Merge pull request #332934 from fabaff/dvc-bump

python312Packages.flufl-lock: 7.1.1 -> 8.1.0 , dvc: 3.51.2 -> 3.53.1
This commit is contained in:
Fabian Affolter 2024-08-08 22:08:29 +02:00 committed by GitHub
commit dd1bf6abbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 22 additions and 14 deletions

View File

@ -57,7 +57,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "dvc"; pname = "dvc";
version = "3.51.2"; version = "3.53.1";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -66,7 +66,7 @@ buildPythonPackage rec {
owner = "iterative"; owner = "iterative";
repo = "dvc"; repo = "dvc";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-MjzunpPWzGfa62Jr+krEdm+i+N10QNmW7qRWaU/58OM="; hash = "sha256-YX65jAkM0LFFtKf+MX0w1BfhyR2Dzr5Vpwxl2jJ/GGw=";
}; };
pythonRelaxDeps = [ pythonRelaxDeps = [

View File

@ -1,34 +1,36 @@
{ {
lib, lib,
atpublic,
buildPythonPackage, buildPythonPackage,
fetchPypi, fetchPypi,
pytestCheckHook, hatchling,
pythonOlder,
atpublic,
psutil, psutil,
pytest-cov, pytest-cov,
pytestCheckHook,
pythonOlder,
sybil, sybil,
pdm-pep517,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "flufl-lock"; pname = "flufl-lock";
version = "7.1.1"; version = "8.1.0";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
pname = "flufl.lock"; pname = "flufl_lock";
inherit version; inherit version;
hash = "sha256-rxQXKzW7xYaHvQa3DRaT/Y1Iy/D/3n5RphjBSK4kBC0="; hash = "sha256-2IMCAFaSpj2YtgCAFY+vCJvl7K5pafcGQJ2oJ2/c58s=";
}; };
nativeBuildInputs = [ pdm-pep517 ]; build-system = [ hatchling ];
propagatedBuildInputs = [
dependencies = [
atpublic atpublic
psutil psutil
]; ];
nativeCheckInputs = [ nativeCheckInputs = [
pytestCheckHook pytestCheckHook
pytest-cov pytest-cov
@ -45,10 +47,10 @@ buildPythonPackage rec {
pythonNamespaces = [ "flufl" ]; pythonNamespaces = [ "flufl" ];
meta = with lib; { meta = with lib; {
homepage = "https://flufllock.readthedocs.io/";
description = "NFS-safe file locking with timeouts for POSIX and Windows"; description = "NFS-safe file locking with timeouts for POSIX and Windows";
homepage = "https://flufllock.readthedocs.io/";
changelog = "https://gitlab.com/warsaw/flufl.lock/-/blob/${version}/docs/NEWS.rst"; changelog = "https://gitlab.com/warsaw/flufl.lock/-/blob/${version}/docs/NEWS.rst";
maintainers = with maintainers; [ qyliss ];
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ qyliss ];
}; };
} }

View File

@ -12,6 +12,8 @@ with python3.pkgs;
buildPythonPackage rec { buildPythonPackage rec {
pname = "mailman"; pname = "mailman";
version = "3.3.9"; version = "3.3.9";
pyproject = true;
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
@ -19,7 +21,11 @@ buildPythonPackage rec {
hash = "sha256-GblXI6IwkLl+V1gEbMAe1baVyZOHMaYaYITXcTkp2Mo="; hash = "sha256-GblXI6IwkLl+V1gEbMAe1baVyZOHMaYaYITXcTkp2Mo=";
}; };
propagatedBuildInputs = with python3.pkgs; [ build-system = with python3.pkgs; [
setuptools
];
dependencies = with python3.pkgs; [
aiosmtpd aiosmtpd
alembic alembic
authheaders authheaders