nixpkgs/pkgs/development/python-modules/github-to-sqlite/default.nix
Robert James Hernandez b2a8e40881
github-to-sqlite: init at 2.8.2 (#126563)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-06-11 10:58:55 +02:00

46 lines
821 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, pytestCheckHook
, pyyaml
, requests
, requests-mock
, sqlite-utils
}:
buildPythonPackage rec {
pname = "github-to-sqlite";
version = "2.8.2";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "dogsheep";
repo = pname;
rev = version;
sha256 = "16mw429ppnhgsa98qs3fhprqvdpqbr5q1biq3ql8rsf38difdbl8";
};
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 ];
};
}