Merge pull request #300953 from natsukium/pdm/update

pdm: 2.12.4 -> 2.13.2; python311Packages.unearth: 0.14.0 -> 0.15.1; python311Packages.pbs-installer: init at 2024.4.1
This commit is contained in:
OTABI Tomoya 2024-04-07 22:26:27 +09:00 committed by GitHub
commit 8a35fec862
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 79 additions and 22 deletions

View file

@ -0,0 +1,50 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pdm-backend
, httpx
, zstandard
}:
buildPythonPackage rec {
pname = "pbs-installer";
version = "2024.4.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "frostming";
repo = "pbs-installer";
rev = version;
hash = "sha256-0LuajPD/sM0LoyRoCkGJ9medUcWNEPqvY76GgK2rIac=";
};
build-system = [
pdm-backend
];
optional-dependencies = {
all = optional-dependencies.install ++ optional-dependencies.download;
download = [
httpx
];
install = [
zstandard
];
};
pythonImportsCheck = [ "pbs_installer" ];
# upstream has no test
doCheck = false;
meta = with lib; {
description = "Installer for Python Build Standalone";
homepage = "https://github.com/frostming/pbs-installer";
changelog = "https://github.com/frostming/pbs-installer/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}

View file

@ -2,12 +2,12 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder , pythonOlder
, cached-property
, packaging , packaging
, pdm-backend , pdm-backend
, requests , httpx
, flask , flask
, pytest-httpserver , pytest-httpserver
, pytest-mock
, pytestCheckHook , pytestCheckHook
, requests-wsgi-adapter , requests-wsgi-adapter
, trustme , trustme
@ -15,23 +15,23 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "unearth"; pname = "unearth";
version = "0.14.0"; version = "0.15.1";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-883fuUrA+GX7z5ZCMVVu9xgwEDecALASBVF6UMeKGG0="; hash = "sha256-hj3rMznA1lpb4NCtLGfUbV9XSnmOdO8FUr8R0pijCrs=";
}; };
nativeBuildInputs = [ build-system = [
pdm-backend pdm-backend
]; ];
propagatedBuildInputs = [ dependencies = [
packaging packaging
requests httpx
]; ];
__darwinAllowLocalNetworking = true; __darwinAllowLocalNetworking = true;
@ -39,6 +39,7 @@ buildPythonPackage rec {
nativeCheckInputs = [ nativeCheckInputs = [
flask flask
pytest-httpserver pytest-httpserver
pytest-mock
pytestCheckHook pytestCheckHook
requests-wsgi-adapter requests-wsgi-adapter
trustme trustme

View file

@ -1,8 +1,6 @@
{ lib { lib
, stdenv
, python3 , python3
, fetchFromGitHub , fetchFromGitHub
, fetchpatch
, fetchPypi , fetchPypi
, nix-update-script , nix-update-script
, runtimeShell , runtimeShell
@ -35,41 +33,46 @@ in
with python.pkgs; with python.pkgs;
buildPythonApplication rec { buildPythonApplication rec {
pname = "pdm"; pname = "pdm";
version = "2.12.4"; version = "2.13.2";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-0Eh3Ni+Vz5/8HSw4uFH2k3BuSSiEDkiYauV22tV0FJY="; hash = "sha256-4oK/HK8KCD/A+16JrW9518V5/1LHu1juhYfqPVu54Uo=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
pdm-backend
installShellFiles installShellFiles
]; ];
propagatedBuildInputs = [ build-system = [
pdm-backend
];
dependencies = [
blinker blinker
certifi
cachecontrol
dep-logic dep-logic
filelock
findpython findpython
hishel
httpx
installer installer
msgpack
packaging packaging
pbs-installer
platformdirs platformdirs
pyproject-hooks pyproject-hooks
python-dotenv python-dotenv
requests-toolbelt
resolvelib resolvelib
rich rich
shellingham shellingham
tomlkit tomlkit
unearth unearth
virtualenv virtualenv
] ] ++ httpx.optional-dependencies.socks
++ cachecontrol.optional-dependencies.filecache ++ pbs-installer.optional-dependencies.install
++ lib.optionals (pythonOlder "3.11") [ ++ lib.optionals (pythonOlder "3.11") [
tomli tomli
] ]
@ -100,7 +103,6 @@ buildPythonApplication rec {
nativeCheckInputs = [ nativeCheckInputs = [
pytestCheckHook pytestCheckHook
pytest-mock pytest-mock
pytest-rerunfailures
pytest-xdist pytest-xdist
pytest-httpserver pytest-httpserver
] ++ lib.optional stdenv.isLinux first; ] ++ lib.optional stdenv.isLinux first;
@ -120,7 +122,9 @@ buildPythonApplication rec {
"test_convert_setup_py_project" "test_convert_setup_py_project"
# pythonfinder isn't aware of nix's python infrastructure # pythonfinder isn't aware of nix's python infrastructure
"test_use_wrapper_python" "test_use_wrapper_python"
"test_use_invalid_wrapper_python"
# touches the network
"test_find_candidates_from_find_links"
]; ];
__darwinAllowLocalNetworking = true; __darwinAllowLocalNetworking = true;
@ -134,7 +138,7 @@ buildPythonApplication rec {
meta = with lib; { meta = with lib; {
homepage = "https://pdm-project.org"; homepage = "https://pdm-project.org";
changelog = "https://github.com/pdm-project/pdm/releases/tag/${version}"; changelog = "https://github.com/pdm-project/pdm/releases/tag/${version}";
description = "A modern Python package manager with PEP 582 support"; description = "A modern Python package and dependency manager supporting the latest PEP standards";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ cpcloud ]; maintainers = with maintainers; [ cpcloud ];
mainProgram = "pdm"; mainProgram = "pdm";

View file

@ -9432,6 +9432,8 @@ self: super: with self; {
pbr = callPackage ../development/python-modules/pbr { }; pbr = callPackage ../development/python-modules/pbr { };
pbs-installer = callPackage ../development/python-modules/pbs-installer { };
pc-ble-driver-py = toPythonModule (callPackage ../development/python-modules/pc-ble-driver-py { }); pc-ble-driver-py = toPythonModule (callPackage ../development/python-modules/pc-ble-driver-py { });
pcapy-ng = callPackage ../development/python-modules/pcapy-ng { pcapy-ng = callPackage ../development/python-modules/pcapy-ng {