trying to package chained-recurrence
This commit is contained in:
parent
4b2b110630
commit
5c28114a6f
3 changed files with 20 additions and 16 deletions
|
@ -32,21 +32,6 @@
|
|||
inputs.nh.overlays.default
|
||||
inputs.emacs-lsp-booster.overlays.default
|
||||
|
||||
(final: prev: {
|
||||
takwarrior-chained = let
|
||||
pname = "chained-recurrence";
|
||||
version = "0.0.13";
|
||||
in
|
||||
pkgs.python312Packages.buildPythonPackage {
|
||||
format = "pyproject";
|
||||
inherit pname version;
|
||||
src = pkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-PMxZFB82XkvHMCLVvbiW0L8AVQFiYpzXTFpxIUyDqIY=";
|
||||
};
|
||||
};
|
||||
})
|
||||
|
||||
(final: prev: {
|
||||
wineWowPackages.stagingFull = pkgs-stable.wineWowPackages.stagingFull.overrideAttrs
|
||||
(old: {
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
tasksh
|
||||
taskwarrior-tui
|
||||
taskopen
|
||||
taskwarrior-chained
|
||||
nix-config.packages.x86_64-linux.chained-recurrence
|
||||
# syncall
|
||||
];
|
||||
|
||||
|
|
19
packages/chained-recurrence.nix
Normal file
19
packages/chained-recurrence.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
pname = "chained-recurrence";
|
||||
version = "0.0.13";
|
||||
in
|
||||
pkgs.python312Packages.buildPythonPackage {
|
||||
inherit pname version;
|
||||
|
||||
pyproject = true;
|
||||
|
||||
src = pkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-PMxZFB82XkvHMCLVvbiW0L8AVQFiYpzXTFpxIUyDqIY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgs.python3Packages.setuptools
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue