refactor(nix): move attributes around

This commit is contained in:
2026-05-09 15:01:11 -04:00
parent 49aaf5c058
commit a30fb645dd
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -18,13 +18,13 @@
{
devShells.default = pkgs.mkShell {
name = "errornocord";
buildInputs = [ self'.packages.default ];
inputsFrom = [ self'.packages.default ];
buildInputs = [ self'.packages.default ];
};
packages = rec {
errornocord = pkgs.callPackage ./nix/package.nix { inherit self; };
default = errornocord;
errornocord = pkgs.callPackage ./nix/package.nix { inherit self; };
};
};
+2 -2
View File
@@ -27,10 +27,10 @@ let
disnake_paginator = python3Packages.buildPythonPackage {
pname = "disnake-paginator";
version = "1.0.8";
pyproject = true;
src = self.pins.disnake-paginator;
pyproject = true;
build-system = [ python3Packages.setuptools ];
propagatedBuildInputs = [
@@ -43,10 +43,10 @@ in
python3Packages.buildPythonApplication {
pname = "errornocord";
version = "0.1.0";
pyproject = true;
src = lib.cleanSource ../.;
pyproject = true;
build-system = [ python3Packages.setuptools ];
propagatedBuildInputs = with python3Packages; [