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
21
pkgs/development/python-modules/pycontracts/default.nix
Normal file
21
pkgs/development/python-modules/pycontracts/default.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ lib, buildPythonPackage, fetchPypi
|
||||
, nose, pyparsing, decorator, six, future }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "PyContracts";
|
||||
version = "1.8.14";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "03q5m595ysjrc9h57m7prrca6b9l4yrzvdijnzxnhd61p7jzbh49";
|
||||
};
|
||||
|
||||
buildInputs = [ nose ];
|
||||
propagatedBuildInputs = [ pyparsing decorator six future ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Allows to declare constraints on function parameters and return values";
|
||||
homepage = "https://pypi.python.org/pypi/PyContracts";
|
||||
license = licenses.lgpl2;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue