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
26
pkgs/development/python-modules/hieroglyph/default.nix
Normal file
26
pkgs/development/python-modules/hieroglyph/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ lib, fetchPypi, buildPythonPackage, isPy27, sphinx }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "hieroglyph";
|
||||
version = "2.1.0";
|
||||
disabled = isPy27; # python2 compatible sphinx is too low
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "b4b5db13a9d387438e610c2ca1d81386ccd206944d9a9dd273f21874486cddaf";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ sphinx ];
|
||||
|
||||
# all tests fail; don't know why:
|
||||
# test_absolute_paths_made_relative (hieroglyph.tests.test_path_fixing.PostProcessImageTests) ... ERROR
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Generate HTML presentations from plain text sources";
|
||||
homepage = "https://github.com/nyergler/hieroglyph/";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ juliendehos ];
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue