Merge pull request #299791 from NixOS/revert-299290-auto-update/python311Packages.pathlib-abc

Revert "python311Packages.pathlib-abc: 0.1.1 -> 0.2.0"

authored by Martin Weinelt and committed by GitHub e3eda836 8a9bde69

+7 -2
+2 -2
pkgs/development/python-modules/pathlib-abc/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pathlib-abc"; 11 - version = "0.2.0"; 11 + version = "0.1.1"; 12 12 pyproject = true; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 16 16 src = fetchPypi { 17 17 pname = "pathlib_abc"; 18 18 inherit version; 19 - hash = "sha256-ua9rOf1RMhSFZ47DgD0KEeAqIuhp6AUsrLbo9l3nuGI="; 19 + hash = "sha256-CE573ZGbD3d0kUqeZM2GobOYYPgfeB3XJCWGMfKRWr4="; 20 20 }; 21 21 22 22 build-system = [
+4
pkgs/development/python-modules/pathtools/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , pythonAtLeast 4 5 }: 5 6 6 7 buildPythonPackage rec { 7 8 pname = "pathtools"; 8 9 version = "0.1.2"; 9 10 format = "setuptools"; 11 + 12 + # imp and distuils usage, last commit in 2016 13 + disabled = pythonAtLeast "3.12"; 10 14 11 15 src = fetchPypi { 12 16 inherit pname version;
+1
pkgs/development/python-modules/spacy/default.nix
··· 51 51 }; 52 52 53 53 pythonRelaxDeps = [ 54 + "smart-open" 54 55 "typer" 55 56 ]; 56 57