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
45
pkgs/development/python-modules/github-to-sqlite/default.nix
Normal file
45
pkgs/development/python-modules/github-to-sqlite/default.nix
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, isPy3k
|
||||
, pytestCheckHook
|
||||
, pyyaml
|
||||
, requests
|
||||
, requests-mock
|
||||
, sqlite-utils
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "github-to-sqlite";
|
||||
version = "2.8.3";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dogsheep";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-4wkwtcChcR7XH421wa3dGdIPhwgeaTFk247zIRX98xo=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
sqlite-utils
|
||||
pyyaml
|
||||
requests
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
requests-mock
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
"test_scrape_dependents"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Save data from GitHub to a SQLite database";
|
||||
homepage = "https://github.com/dogsheep/github-to-sqlite";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ sarcasticadmin ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue