python3Packages.cynthion: 0.1.8 -> 0.2.0

+3 -6
+3 -6
pkgs/development/python-modules/cynthion/default.nix
··· 2 2 lib, 3 3 fetchFromGitHub, 4 4 buildPythonPackage, 5 - pythonOlder, 6 5 7 6 # build-system 8 7 setuptools, ··· 28 27 }: 29 28 buildPythonPackage rec { 30 29 pname = "cynthion"; 31 - version = "0.1.8"; 30 + version = "0.2.0"; 32 31 pyproject = true; 33 - disabled = pythonOlder "3.8"; 34 32 35 33 src = fetchFromGitHub { 36 34 owner = "greatscottgadgets"; 37 35 repo = "cynthion"; 38 36 tag = version; 39 - hash = "sha256-twkCv47Goob2cO7FeHegvab3asf8fqbY9qg97Vw4ZCo="; 37 + hash = "sha256-rbvw2eieZwTxStwCRuvIx/f4vdPsOFnV/U80Ga+fNPA="; 40 38 }; 41 39 42 40 sourceRoot = "${src.name}/cynthion/python"; ··· 75 73 pythonImportsCheck = [ "cynthion" ]; 76 74 77 75 meta = { 78 - changelog = "https://github.com/greatscottgadgets/cynthion/releases/tag/${version}"; 76 + changelog = "https://github.com/greatscottgadgets/cynthion/releases/tag/${src.tag}"; 79 77 description = "Python package and utilities for the Great Scott Gadgets Cynthion USB Test Instrument"; 80 78 homepage = "https://github.com/greatscottgadgets/cynthion"; 81 79 license = lib.licenses.bsd3; 82 80 maintainers = with lib.maintainers; [ carlossless ]; 83 - broken = lib.versionAtLeast amaranth.version "0.5"; 84 81 }; 85 82 }