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
30
pkgs/development/python-modules/moretools/default.nix
Normal file
30
pkgs/development/python-modules/moretools/default.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ lib, buildPythonPackage, fetchPypi
|
||||
, six, path, zetup, pytest
|
||||
, decorator }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "moretools";
|
||||
version = "0.1.12";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "73b0469d4f1df6d967508103473f0b1524708adbff71f8f90ef71d9a44226b22";
|
||||
};
|
||||
|
||||
checkPhase = ''
|
||||
py.test test
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ zetup ];
|
||||
checkInputs = [ six path pytest ];
|
||||
propagatedBuildInputs = [ decorator ];
|
||||
|
||||
meta = with lib; {
|
||||
description = ''
|
||||
Many more basic tools for python 2/3 extending itertools, functools, operator and collections
|
||||
'';
|
||||
homepage = "https://bitbucket.org/userzimmermann/python-moretools";
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue