python3Packages.pynfsclient: switch to Pennyw0rth Fork

This commit is contained in:
Letgamer
2026-04-11 23:18:56 +02:00
parent 5d428d54b5
commit 0ab25e4a61
@@ -1,30 +1,22 @@
{
lib,
buildPythonPackage,
fetchPypi,
pythonAtLeast,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "pynfsclient";
version = "0.1.5";
version = "1.0.6";
pyproject = true;
disabled = pythonAtLeast "3.13";
src = fetchPypi {
pname = "pyNfsClient";
inherit version;
hash = "sha256-xgZL08NlMCpSkALQwklh7Xq16bK2Sm2hAynbrIWsgaU=";
src = fetchFromGitHub {
owner = "Pennyw0rth";
repo = "NfsClient";
rev = "v${version}";
hash = "sha256-9PV/RpK/rOI9jpTDy0FmkXY2Cf54vve6j1kM5dcZgV8=";
};
postPatch = ''
# HISTORY.md is missing
substituteInPlace setup.py \
--replace-fail "HISTORY.md" "README.rst"
'';
build-system = [ setuptools ];
# Module has no tests
@@ -33,9 +25,13 @@ buildPythonPackage rec {
pythonImportsCheck = [ "pyNfsClient" ];
meta = {
description = "Pure python NFS client";
homepage = "https://pypi.org/project/pyNfsClient/";
description = "Pure python library to simulate NFS client";
homepage = "https://github.com/Pennyw0rth/NfsClient";
changelog = "https://github.com/Pennyw0rth/NfsClient/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
maintainers = with lib.maintainers; [
fab
letgamer
];
};
}