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/ptyprocess/default.nix
Normal file
29
pkgs/development/python-modules/ptyprocess/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, fetchpatch
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ptyprocess";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Remove after https://github.com/pexpect/ptyprocess/pull/64 is merged.
|
||||
(fetchpatch {
|
||||
url = "https://github.com/pexpect/ptyprocess/commit/40c1ccf3432a6787be1801ced721540e34c6cd87.patch";
|
||||
sha256 = "sha256-IemngBqBq3QRCmVscWtsuXHiFgvTOJIIB9SyAvsqHd0=";
|
||||
})
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Run a subprocess in a pseudo terminal";
|
||||
homepage = "https://github.com/pexpect/ptyprocess";
|
||||
license = lib.licenses.isc;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue