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