python312Packages.color-operations: 0.1.6 -> 0.2.0 (#395658)

authored by Nikolay Korotkiy and committed by GitHub 69767c6f cc6465d9

+5 -3
+5 -3
pkgs/development/python-modules/color-operations/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "color-operations"; 22 - version = "0.1.6"; 22 + version = "0.2.0"; 23 23 pyproject = true; 24 - disabled = pythonOlder "3.8"; 24 + 25 + disabled = pythonOlder "3.9"; 25 26 26 27 src = fetchFromGitHub { 27 28 owner = "vincentsarago"; 28 29 repo = "color-operations"; 29 30 tag = version; 30 - hash = "sha256-hHfcScKYemvPg2V5wn1Wsctjg6vgzljk5sAw+I+kS6w="; 31 + hash = "sha256-LUO9PxrXCkFqyguvX4GT6vmlALMyfkDqXeGZAQG76vw="; 31 32 }; 32 33 33 34 build-system = [ ··· 52 53 meta = { 53 54 description = "Apply basic color-oriented image operations. Fork of rio-color"; 54 55 homepage = "https://github.com/vincentsarago/color-operations"; 56 + changelog = "https://github.com/vincentsarago/color-operations/releases/tag/${src.tag}"; 55 57 license = lib.licenses.mit; 56 58 maintainers = lib.teams.geospatial.members; 57 59 };