Merge pull request #279104 from fabaff/archspec-bump

python311Packages.archspec: 0.2.1 -> 0.2.2

authored by Fabian Affolter and committed by GitHub ed29358e ac30c819

+6 -6
+6 -6
pkgs/development/python-modules/archspec/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "archspec"; 13 - version = "0.2.1"; 14 - format = "pyproject"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchFromGitHub { 19 - owner = pname; 20 - repo = pname; 21 rev = "refs/tags/v${version}"; 22 fetchSubmodules = true; 23 - hash = "sha256-2rMsxSAnPIVqvsbAUtBbHLb3AvrZFjGzxYO6A/1qXnY="; 24 }; 25 26 nativeBuildInputs = [ ··· 43 meta = with lib; { 44 description = "Library for detecting, labeling, and reasoning about microarchitectures"; 45 homepage = "https://archspec.readthedocs.io/"; 46 - changelog = "https://github.com/archspec/archspec/releases/tag/v0.2.1"; 47 license = with licenses; [ mit asl20 ]; 48 maintainers = with maintainers; [ atila ]; 49 };
··· 10 11 buildPythonPackage rec { 12 pname = "archspec"; 13 + version = "0.2.2"; 14 + pyproject = true; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchFromGitHub { 19 + owner = "archspec"; 20 + repo = "archspec"; 21 rev = "refs/tags/v${version}"; 22 fetchSubmodules = true; 23 + hash = "sha256-6+1TiXCBqW8YH/ggZhRcZV/Tyh8Ku3ocwxf9z9KrCZY="; 24 }; 25 26 nativeBuildInputs = [ ··· 43 meta = with lib; { 44 description = "Library for detecting, labeling, and reasoning about microarchitectures"; 45 homepage = "https://archspec.readthedocs.io/"; 46 + changelog = "https://github.com/archspec/archspec/releases/tag/v${version}"; 47 license = with licenses; [ mit asl20 ]; 48 maintainers = with maintainers; [ atila ]; 49 };