Commit 08949784 authored by Sigmanificient's avatar Sigmanificient
Browse files

python3Packages.pathlib: remove

parent e82979d6
Loading
Loading
Loading
Loading
+0 −27
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, unittestCheckHook
, pythonAtLeast
}:

buildPythonPackage rec {
  pname = "pathlib";
  version = "1.0.1";
  format = "setuptools";
  disabled = pythonAtLeast "3.4"; # Was added to std library in Python 3.4

  src = fetchPypi {
    inherit pname version;
    sha256 = "17zajiw4mjbkkv6ahp3xf025qglkj0805m9s41c45zryzj6p2h39";
  };

  nativeCheckInputs = [ unittestCheckHook ];

  meta = {
    description = "Object-oriented filesystem paths";
    homepage = "https://pathlib.readthedocs.org/";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -310,6 +310,7 @@ mapAliases ({
  pafy = throw "pafy has been removed because it is unmaintained and only a dependency of mps-youtube, itself superseded by yewtube"; # Added 2023-01-19
  pam = python-pam; # added 2020-09-07.
  PasteDeploy = pastedeploy; # added 2021-10-07
  pathlib = throw "pathlib was removed as it has been integrated in python standard library in version 3.4"; # added 2024-05-13
  pathpy = path; # added 2022-04-12
  pcbnew-transition = pcbnewtransition; # added 2024-03-21
  pdfposter = throw "pdfposter was promoted to a top-level attribute"; # Added 2023-06-29
+0 −2
Original line number Diff line number Diff line
@@ -9509,8 +9509,6 @@ self: super: with self; {
  pathlib2 = callPackage ../development/python-modules/pathlib2 { };
  pathlib = callPackage ../development/python-modules/pathlib { };
  pathlib-abc = callPackage ../development/python-modules/pathlib-abc { };
  pathos = callPackage ../development/python-modules/pathos { };