Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
903 B
Nix
47 lines
903 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
isPy3k,
|
|
pytestCheckHook,
|
|
pyyaml,
|
|
requests,
|
|
requests-mock,
|
|
sqlite-utils,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "github-to-sqlite";
|
|
version = "2.9";
|
|
format = "setuptools";
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dogsheep";
|
|
repo = "github-to-sqlite";
|
|
rev = version;
|
|
hash = "sha256-KwLaaZxBBzRhiBv4p8Imb5XI1hyka9rmr/rxA6wDc7Q=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
sqlite-utils
|
|
pyyaml
|
|
requests
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
requests-mock
|
|
];
|
|
|
|
disabledTests = [ "test_scrape_dependents" ];
|
|
|
|
meta = with lib; {
|
|
description = "Save data from GitHub to a SQLite database";
|
|
mainProgram = "github-to-sqlite";
|
|
homepage = "https://github.com/dogsheep/github-to-sqlite";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ sarcasticadmin ];
|
|
};
|
|
}
|