uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
36
pkgs/development/python-modules/tasklib/default.nix
Normal file
36
pkgs/development/python-modules/tasklib/default.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{ lib, pythonPackages, taskwarrior, writeShellScriptBin }:
|
||||
|
||||
with pythonPackages;
|
||||
|
||||
let
|
||||
|
||||
wsl_stub = writeShellScriptBin "wsl" "true";
|
||||
|
||||
in buildPythonPackage rec {
|
||||
pname = "tasklib";
|
||||
version = "2.4.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "b523bc12893d26c8173a6b8d84b16259c9a9c5acaaf8932bc018117f907b3bc5";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
six
|
||||
pytz
|
||||
tzlocal
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
taskwarrior
|
||||
wsl_stub
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/robgolding/tasklib";
|
||||
description = "A library for interacting with taskwarrior databases";
|
||||
maintainers = with maintainers; [ arcnmx ];
|
||||
platforms = platforms.all;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue