Skip to content

Commit

Permalink
colcon-mixin: init at 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
okvik authored and lopsided98 committed Sep 6, 2024
1 parent 9133804 commit 74a15df
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/colcon/mixin.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ lib, buildPythonPackage, fetchPypi, colcon-core, pyyaml }:

buildPythonPackage rec {
pname = "colcon-mixin";
version = "0.2.3";

src = fetchPypi {
inherit pname version;
sha256 = "sha256-4MNJz3sHCWEohm7BD6UI41QA2yCP7LvrhqVKsaHUnuk=";
};

propagatedBuildInputs = [
colcon-core
pyyaml
];

# Requires unpackaged dependencies
doCheck = false;

meta = with lib; {
description = "An extension for colcon-core to read CLI mixins from files.";
homepage = "https://colcon.readthedocs.io";
license = licenses.asl20;
maintainers = with maintainers; [ lopsided98 ];
};
}
3 changes: 3 additions & 0 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ self: super: with self.lib; {
colcon-devtools
colcon-library-path
colcon-metadata
colcon-mixin
colcon-notification
colcon-output
colcon-package-information
Expand Down Expand Up @@ -97,6 +98,8 @@ self: super: with self.lib; {

colcon-metadata = pyFinal.callPackage ./colcon/metadata.nix { };

colcon-mixin = pyFinal.callPackage ./colcon/mixin.nix { };

colcon-notification = pyFinal.callPackage ./colcon/notification.nix { };

colcon-output = pyFinal.callPackage ./colcon/output.nix { };
Expand Down

0 comments on commit 74a15df

Please sign in to comment.