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
31
pkgs/development/python-modules/tabview/default.nix
Normal file
31
pkgs/development/python-modules/tabview/default.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tabview";
|
||||
version = "1.4.4";
|
||||
format = "setuptools";
|
||||
|
||||
# newest release only available as wheel on pypi
|
||||
src = fetchFromGitHub {
|
||||
owner = "TabViewer";
|
||||
repo = "tabview";
|
||||
rev = version;
|
||||
sha256 = "1d1l8fhdn3w2zg7wakvlmjmgjh9lh9h5fal1clgyiqmhfix4cn4m";
|
||||
};
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest discover
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python curses command line CSV and tabular data viewer";
|
||||
homepage = "https://github.com/TabViewer/tabview";
|
||||
changelog = "https://github.com/TabViewer/tabview/blob/main/CHANGELOG.rst";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue