depot/third_party/nixpkgs/pkgs/development/python-modules/github-to-sqlite/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

46 lines
847 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 = pname;
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";
homepage = "https://github.com/dogsheep/github-to-sqlite";
license = licenses.asl20;
maintainers = with maintainers; [ sarcasticadmin ];
};
}