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/jsonstreams/default.nix
Normal file
26
pkgs/development/python-modules/jsonstreams/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, six, }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jsonstreams";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dcbaker";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0qw74wz9ngz9wiv89vmilbifsbvgs457yn1bxnzhrh7g4vs2wcav";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
pytestFlagsArray = [ "tests --doctest-modules jsonstreams" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
description = "A JSON streaming writer";
|
||||
homepage = "https://github.com/dcbaker/jsonstreams";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ chkno ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue