sca2d: 0.2.0 -> 0.2.2 (#369351)

authored by Gaétan Lepage and committed by GitHub 10f644a4 ce9d8051

+8 -8
+8 -8
pkgs/by-name/sc/sca2d/package.nix
··· 13 13 src = fetchFromGitHub { 14 14 owner = "lark-parser"; 15 15 repo = "lark"; 16 - rev = "refs/tags/${version}"; 16 + tag = version; 17 17 sha256 = "sha256-ctdPPKPSD4weidyhyj7RCV89baIhmuxucF3/Ojx1Efo="; 18 18 }; 19 19 ··· 27 27 in 28 28 python.pkgs.buildPythonApplication rec { 29 29 pname = "sca2d"; 30 - version = "0.2.0"; 30 + version = "0.2.2"; 31 31 format = "setuptools"; 32 32 33 33 src = fetchFromGitLab { 34 34 owner = "bath_open_instrumentation_group"; 35 35 repo = "sca2d"; 36 - rev = "v${version}"; 37 - hash = "sha256-P+7g57AH8H7q0hBE2I9w8A+bN5M6MPbc9gA0b889aoQ="; 36 + tag = "v${version}"; 37 + hash = "sha256-p0Bv8jcnjcOLBAXN5A4GspSIEG4G4NPA4o0aEtwe/LU="; 38 38 }; 39 39 40 40 propagatedBuildInputs = with python.pkgs; [ ··· 44 44 45 45 pythonImportsCheck = [ "sca2d" ]; 46 46 47 - meta = with lib; { 47 + meta = { 48 48 description = "Experimental static code analyser for OpenSCAD"; 49 49 mainProgram = "sca2d"; 50 50 homepage = "https://gitlab.com/bath_open_instrumentation_group/sca2d"; 51 - changelog = "https://gitlab.com/bath_open_instrumentation_group/sca2d/-/blob/${src.rev}/CHANGELOG.md"; 52 - license = licenses.gpl3Only; 53 - maintainers = with maintainers; [ traxys ]; 51 + changelog = "https://gitlab.com/bath_open_instrumentation_group/sca2d/-/blob/v${version}/CHANGELOG.md"; 52 + license = lib.licenses.gpl3Only; 53 + maintainers = with lib.maintainers; [ traxys ]; 54 54 }; 55 55 }