From 78981bf1088dd80f7b34f4008e7263250f575fdf Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 19 Jan 2025 21:19:03 +0100 Subject: [PATCH] python3Packages.ulid-transform: 1.0.2 -> 1.2.0 https://github.com/bdraco/ulid-transform/blob/v1.2.0/CHANGELOG.md --- .../development/python-modules/ulid-transform/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/ulid-transform/default.nix b/pkgs/development/python-modules/ulid-transform/default.nix index 0db9799f68c6..a776a9e1b27b 100644 --- a/pkgs/development/python-modules/ulid-transform/default.nix +++ b/pkgs/development/python-modules/ulid-transform/default.nix @@ -5,6 +5,7 @@ fetchFromGitHub, poetry-core, pytest-benchmark, + pytest-codspeed, pytest-cov-stub, pytestCheckHook, pythonOlder, @@ -13,7 +14,7 @@ buildPythonPackage rec { pname = "ulid-transform"; - version = "1.0.2"; + version = "1.2.0"; pyproject = true; disabled = pythonOlder "3.9"; @@ -22,7 +23,7 @@ buildPythonPackage rec { owner = "bdraco"; repo = "ulid-transform"; tag = "v${version}"; - hash = "sha256-99hq329jUpok+rP8WzxN1yTOp15Zfy7tIGRpQMecrc0="; + hash = "sha256-+P5sd3FSk9SYmeHkatB88EE+/1vktyiJJeaecbBkBhI="; }; build-system = [ @@ -33,6 +34,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest-benchmark + pytest-codspeed pytest-cov-stub pytestCheckHook ]; @@ -44,7 +46,7 @@ buildPythonPackage rec { meta = with lib; { description = "Library to create and transform ULIDs"; homepage = "https://github.com/bdraco/ulid-transform"; - changelog = "https://github.com/bdraco/ulid-transform/blob/${src.rev}/CHANGELOG.md"; + changelog = "https://github.com/bdraco/ulid-transform/blob/${src.tag}/CHANGELOG.md"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; };