Skip to content

Commit

Permalink
nix: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Nov 24, 2024
1 parent 7fd12a5 commit 05788ff
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,18 @@
dooit,
}: let
python3 = python311;
version = "0.2.0";
in
python3.pkgs.buildPythonPackage {
pname = "dooit-extras";
version = "0.1.0";
version = "0.2.0";
pyproject = true;

src = fetchFromGitHub {
owner = "dooit-org";
repo = "dooit-extras";
rev = "main";
hash = "sha256-TErBCFoauaXhCzOFotIlZfmk2wASXDcm07yhRTtxEZ0=";
rev = "refs/tags/v${version}";
hash = "sha256-ZBzzH8k4oC3ovLF9+9rzzFZaDDoOvcbX5NCh1WBedK4=";
};

build-system = with python3.pkgs; [poetry-core];
Expand Down

0 comments on commit 05788ff

Please sign in to comment.