diff --git a/pkgs/development/python-modules/color-parser-py/default.nix b/pkgs/development/python-modules/color-parser-py/default.nix index 9f4ae2bc0b00..77862d5041ae 100644 --- a/pkgs/development/python-modules/color-parser-py/default.nix +++ b/pkgs/development/python-modules/color-parser-py/default.nix @@ -6,21 +6,21 @@ pytestCheckHook, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "color-parser-py"; - version = "0.1.6"; + version = "0.1.7"; pyproject = true; # PyPI has Cargo.lock src = fetchPypi { pname = "color_parser_py"; - inherit version; - hash = "sha256-m1qhVAwQNtCwz+DLSAdfKhzkohMLMjvPHxynKhlJfN8="; + inherit (finalAttrs) version; + hash = "sha256-C3Q9vaOa/SE0PtQu5Gw/sk1JMRIlhgbA5VTW+2aC5dU="; }; cargoDeps = rustPlatform.fetchCargoVendor { - inherit pname version src; - hash = "sha256-tKXA6sd5gLCJUaqxzFcZ3lePK41Wk2TbLp0HXBacOyo="; + inherit (finalAttrs) pname version src; + hash = "sha256-nyl0Nmf0DNLH3j2XrTTO1u3erBCbRyp/xO0w/USjDHE="; }; nativeBuildInputs = [ @@ -38,7 +38,8 @@ buildPythonPackage rec { meta = { description = "Python bindings for color parsing and conversion"; homepage = "https://github.com/rusiaaman/color-parser-py"; + changelog = "https://github.com/rusiaaman/color-parser-py/releases/tag/${finalAttrs.version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ aleksana ]; }; -} +})