python3Packages.fspath: init at 20230629; python3Packages.linuxdoc: init at 20240924 (#486778)

This commit is contained in:
Sandro
2026-02-28 21:12:17 +00:00
committed by GitHub
3 changed files with 82 additions and 0 deletions
@@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
six,
}:
buildPythonPackage (finalAttrs: {
pname = "fspath";
version = "20230629";
pyproject = true;
src = fetchFromGitHub {
owner = "return42";
repo = "fspath";
tag = finalAttrs.version;
hash = "sha256-OtJ6PODEYEiUnJriTAKTThSsEtiF7sjMFEu7wFqRR54=";
};
build-system = [
setuptools
];
dependencies = [
six
];
pythonImportsCheck = [ "fspath" ];
meta = {
description = "Handling path names and executables more comfortable";
homepage = "https://github.com/return42/fspath";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ skohtv ];
};
})
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
fspath,
docutils,
sphinx,
}:
buildPythonPackage (finalAttrs: {
pname = "linuxdoc";
version = "20240924";
pyproject = true;
src = fetchFromGitHub {
owner = "return42";
repo = "linuxdoc";
tag = finalAttrs.version;
hash = "sha256-UOOIl+HWI7bK6iWrADTgrGvom++178yPYmyI+qTwVlg=";
};
build-system = [
setuptools
];
dependencies = [
fspath
docutils
sphinx
];
pythonImportsCheck = [ "linuxdoc" ];
meta = {
description = "Sphinx-doc extensions for sophisticated C developer";
homepage = "https://github.com/return42/linuxdoc";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ skohtv ];
};
})
+4
View File
@@ -5904,6 +5904,8 @@ self: super: with self; {
fslpy = callPackage ../development/python-modules/fslpy { };
fspath = callPackage ../development/python-modules/fspath { };
fsspec = callPackage ../development/python-modules/fsspec { };
fsspec-xrootd = callPackage ../development/python-modules/fsspec-xrootd { };
@@ -8911,6 +8913,8 @@ self: super: with self; {
linode-metadata = callPackage ../development/python-modules/linode-metadata { };
linuxdoc = callPackage ../development/python-modules/linuxdoc { };
linuxfd = callPackage ../development/python-modules/linuxfd { };
linuxpy = callPackage ../development/python-modules/linuxpy { };