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
25
pkgs/development/python-modules/ifconfig-parser/default.nix
Normal file
25
pkgs/development/python-modules/ifconfig-parser/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ifconfig-parser";
|
||||
version = "0.0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "KnightWhoSayNi";
|
||||
repo = pname;
|
||||
rev = "4921ac9d6be6244b062d082c164f5a5e69522478";
|
||||
sha256 = "07hbkbr1qspr7qgzldkaslzc6ripj5zlif12d4fk5j801yhvnxjd";
|
||||
};
|
||||
|
||||
checkPhase = ''
|
||||
export PYTHONPATH=$PYTHONPATH:$(pwd)/ifconfigparser:$(pwd)/ifconfigparser/tests
|
||||
python -m unittest -v test_ifconfig_parser.TestIfconfigParser
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Unsophisticated python package for parsing raw output of ifconfig.";
|
||||
homepage = "https://github.com/KnightWhoSayNi/ifconfig-parser";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ atemu ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue