lol

python310Packages.xdg-base-dirs: 6.0.0 -> 6.0.1

Diff: https://github.com/srstevenson/xdg-base-dirs/compare/6.0.0...6.0.1

Changelog: https://github.com/srstevenson/xdg-base-dirs/releases/tag/6.0.1

figsoda b35388ef 728bae02

+7 -2
+7 -2
pkgs/development/python-modules/xdg-base-dirs/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "xdg-base-dirs"; 11 - version = "6.0.0"; 11 + version = "6.0.1"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.10"; ··· 17 17 owner = "srstevenson"; 18 18 repo = "xdg-base-dirs"; 19 19 rev = version; 20 - hash = "sha256-yVuruSKv99IZGNCpY9cKwAe6gJNAWjL+Lol2D1/0hiI="; 20 + hash = "sha256-nbdF1tjVqlxwiGW0pySS6HyJbmNuQ7mVdQYfhofO4Dk="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ ··· 27 27 nativeCheckInputs = [ pytestCheckHook ]; 28 28 29 29 pythonImportsCheck = [ "xdg_base_dirs" ]; 30 + 31 + # remove coverage flags from pytest config 32 + postPatch = '' 33 + sed -i /addopts/d pyproject.toml 34 + ''; 30 35 31 36 meta = with lib; { 32 37 description = "An implementation of the XDG Base Directory Specification in Python";