nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python313Packages.attrs: 24.2.0 -> 24.3.0

https://github.com/python-attrs/attrs/releases/tag/24.3.0

+7 -8
+2 -2
pkgs/development/python-modules/attrs/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "attrs"; 13 - version = "24.2.0"; 13 + version = "24.3.0"; 14 14 disabled = pythonOlder "3.7"; 15 15 format = "pyproject"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-XPsbkUi1sIZWm67APyDXtr87ysyaQr6/h/+qyjYvY0Y="; 19 + hash = "sha256-j1wHMz1UMQNUG6e+Dizhbu7oEwyws/kjirkEzh6Fuv8="; 20 20 }; 21 21 22 22 patches = [
+5 -6
pkgs/development/python-modules/attrs/remove-hatch-plugins.patch
··· 1 1 diff --git a/pyproject.toml b/pyproject.toml 2 - index 93b3f40..e34ff5d 100644 2 + index 0b59809..8811148 100644 3 3 --- a/pyproject.toml 4 4 +++ b/pyproject.toml 5 5 @@ -1,7 +1,7 @@ ··· 11 11 build-backend = "hatchling.build" 12 12 13 13 14 - @@ -27,7 +27,8 @@ classifiers = [ 14 + @@ -26,7 +26,8 @@ classifiers = [ 15 15 "Typing :: Typed", 16 16 ] 17 - dependencies = ["importlib_metadata;python_version<'3.8'"] 17 + dependencies = [] 18 18 -dynamic = ["version", "readme"] 19 19 +dynamic = ["readme"] 20 20 +version = "@version@" 21 21 22 22 [project.optional-dependencies] 23 23 tests-mypy = [ 24 - @@ -76,54 +77,9 @@ GitHub = "https://github.com/python-attrs/attrs" 25 - Funding = "https://github.com/sponsors/hynek" 24 + @@ -72,53 +73,9 @@ Funding = "https://github.com/sponsors/hynek" 26 25 Tidelift = "https://tidelift.com/subscription/pkg/pypi-attrs?utm_source=pypi-attrs&utm_medium=pypi" 27 26 28 - - 27 + 29 28 -[tool.hatch.version] 30 29 -source = "vcs" 31 30 -raw-options = { local_scheme = "no-local-version" }