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
45
pkgs/development/python-modules/etuples/default.nix
Normal file
45
pkgs/development/python-modules/etuples/default.nix
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, cons
|
||||
, multipledispatch
|
||||
, pytestCheckHook
|
||||
, pytest-html
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "etuples";
|
||||
version = "0.3.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pythological";
|
||||
repo = "etuples";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-gJNxrO2d/eF4t3bBlz/BwF+9eT1nKrVrTP3F6/dEN00=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cons
|
||||
multipledispatch
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
pytest-html
|
||||
];
|
||||
|
||||
pytestFlagsArray = [
|
||||
"--html=testing-report.html"
|
||||
"--self-contained-html"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "etuples" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python S-expression emulation using tuple-like objects";
|
||||
homepage = "https://github.com/pythological/etuples";
|
||||
changelog = "https://github.com/pythological/etuples/releases";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ Etjean ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue