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
29
pkgs/development/python-modules/gin-config/default.nix
Normal file
29
pkgs/development/python-modules/gin-config/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, six
|
||||
, enum34
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "gin-config";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0c6ea5026ded927c8c93c990b01c695257c1df446e45e549a158cfbc79e19ed6";
|
||||
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six enum34 ];
|
||||
|
||||
# PyPI archive does not ship with tests
|
||||
doCheck= false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/google/gin-config";
|
||||
description = "Gin provides a lightweight configuration framework for Python, based on dependency injection.";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ jethro ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue