python310Packages.contourpy 1.1.0 -> 1.2.0 https://repology.org/project/python:contourpy/versions attrpath: python310Packages.contourpy Checking auto update branch... [version] [version] skipping because derivation has updateScript [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] Going to be running update for following packages: - python3.10-contourpy-1.1.0 Press Enter key to continue... Running update for: - python3.10-contourpy-1.1.0: UPDATING ... - python3.10-contourpy-1.1.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/contourpy/default.nix b/pkgs/development/python-modules/contourpy/default.nix index f5af82e55ff3..5e12a4531b33 100644 --- a/pkgs/development/python-modules/contourpy/default.nix +++ b/pkgs/development/python-modules/contourpy/default.nix @@ -25,7 +25,7 @@ let countourpy = buildPythonPackage rec { pname = "contourpy"; - version = "1.1.0"; + version = "1.2.0"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -34,7 +34,7 @@ let countourpy = buildPythonPackage rec { owner = "contourpy"; repo = "contourpy"; rev = "refs/tags/v${version}"; - hash = "sha256-7M+5HMDqQI4UgVfW/MXsVyz/yM6wjTcJEdw7vPvzuNY="; + hash = "sha256-5yZrIwwe9dL5vtdSJnOhY9X4BdK/cdEY4DkVVjCq1uw="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.1.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , pythonOlder # build , meson , meson-python , ninja , pybind11 # propagates , numpy # optionals , bokeh , chromedriver , selenium # tests , matplotlib , pillow , pytestCheckHook }: let countourpy = buildPythonPackage rec { pname = "contourpy"; version = "1.2.0"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "contourpy"; repo = "contourpy"; rev = "refs/tags/v${version}"; hash = "sha256-5yZrIwwe9dL5vtdSJnOhY9X4BdK/cdEY4DkVVjCq1uw="; }; nativeBuildInputs = [ meson meson-python ninja pybind11 ]; propagatedBuildInputs = [ numpy ]; passthru.optional-depdendencies = { bokeh = [ bokeh chromedriver selenium ]; }; doCheck = false; # infinite recursion with matplotlib, tests in passthru nativeCheckInputs = [ matplotlib pillow pytestCheckHook ]; passthru.tests = { check = countourpy.overridePythonAttrs (_: { doCheck = true; }); }; pythonImportsCheck = [ "contourpy" ]; meta = with lib; { changelog = "https://github.com/contourpy/contourpy/releases/tag/v${version}"; description = "Python library for calculating contours in 2D quadrilateral grids"; homepage = "https://github.com/contourpy/contourpy"; license = licenses.bsd3; maintainers = with maintainers; [ ]; }; }; in countourpy