python3Packages.pathlib-abc: 0.5.1 -> 0.5.2 (#451159)

This commit is contained in:
dotlambda
2025-10-11 23:22:05 +00:00
committed by GitHub

View File

@@ -1,23 +1,21 @@
{ {
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchPypi, fetchFromGitHub,
pythonOlder,
hatchling, hatchling,
pytestCheckHook, pytestCheckHook,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pathlib-abc"; pname = "pathlib-abc";
version = "0.5.1"; version = "0.5.2";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; src = fetchFromGitHub {
owner = "barneygale";
src = fetchPypi { repo = "pathlib-abc";
pname = "pathlib_abc"; tag = version;
inherit version; hash = "sha256-Amr5yrdmS0jx1dnakstgE7JFs4QzNK150aG51GUrc2Y=";
hash = "sha256-vsmplUco6iEJL4oRaLWc1vOAoMNQPkZuDCrJx8JiNWQ=";
}; };
build-system = [ hatchling ]; build-system = [ hatchling ];
@@ -26,11 +24,11 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ]; nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; { meta = {
description = "Python base classes for rich path objects"; description = "Python base classes for rich path objects";
homepage = "https://github.com/barneygale/pathlib-abc"; homepage = "https://github.com/barneygale/pathlib-abc";
changelog = "https://github.com/barneygale/pathlib-abc/blob/${version}/CHANGES.rst"; changelog = "https://github.com/barneygale/pathlib-abc/blob/${src.tag}/CHANGES.rst";
license = licenses.psfl; license = lib.licenses.psfl;
maintainers = [ ]; maintainers = [ ];
}; };
} }