python311Packages.seaborn 0.12.2 -> 0.13.0 https://repology.org/project/python:seaborn/versions attrpath: python311Packages.seaborn Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/7sg1ixw663f0dc154sbdp82m29c80ya9-packages.json.drv building '/nix/store/7sg1ixw663f0dc154sbdp82m29c80ya9-packages.json.drv'... Going to be running update for following packages: - python3.11-seaborn-0.12.2 Press Enter key to continue... Running update for: - python3.11-seaborn-0.12.2: UPDATING ... - python3.11-seaborn-0.12.2: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/seaborn/default.nix b/pkgs/development/python-modules/seaborn/default.nix index 267b6065ed73..1ef29af3ec60 100644 --- a/pkgs/development/python-modules/seaborn/default.nix +++ b/pkgs/development/python-modules/seaborn/default.nix @@ -15,14 +15,14 @@ buildPythonPackage rec { pname = "seaborn"; - version = "0.12.2"; + version = "0.13.0"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-N0ZF82UJ0NyriVy6W0fa8Fhvd7/js2yXxgfbfaW+ATk="; + hash = "sha256-Dnar0uwpHGVbUWcDxqAi8P1a/tJsjnFOi670gVD3NZg="; }; patches = [ No auto update branch exists Old version 0.12.2" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchFromGitHub , flit-core , matplotlib , pytest-xdist , pytestCheckHook , numpy , pandas , pythonOlder , scipy , statsmodels }: buildPythonPackage rec { pname = "seaborn"; version = "0.13.0rc0"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "mwaskom"; repo = "seaborn"; rev = "refs/tags/v${version}"; hash = "sha256-bNuTDXUjdOwqJN1U20eaeSa4/Q3Fe2XMqulqVmDLFEU="; }; nativeBuildInputs = [ flit-core ]; propagatedBuildInputs = [ matplotlib numpy pandas ]; passthru.optional-dependencies = { stats = [ scipy statsmodels ]; }; nativeCheckInputs = [ pytest-xdist pytestCheckHook ]; disabledTests = [ # requires internet connection "test_load_dataset_string_error" ] ++ lib.optionals (!stdenv.hostPlatform.isx86) [ # overly strict float tolerances "TestDendrogram" ]; # All platforms should use Agg. Let's set it explicitly to avoid probing GUI # backends (leads to crashes on macOS). env.MPLBACKEND="Agg"; pythonImportsCheck = [ "seaborn" ]; meta = with lib; { description = "Statistical data visualization"; homepage = "https://seaborn.pydata.org/"; changelog = "https://github.com/mwaskom/seaborn/blob/master/doc/whatsnew/${src.rev}.rst"; license = with licenses; [ bsd3 ]; maintainers = with maintainers; [ fridh ]; }; }