nixpkgs/pkgs/development/python-modules/pyGithub/default.nix

39 lines
885 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, cryptography
, deprecated
, fetchFromGitHub
, httpretty
, isPy3k
, parameterized
, pyjwt
, pytestCheckHook
, requests }:
2017-03-15 23:48:34 +00:00
buildPythonPackage rec {
pname = "PyGithub";
version = "1.54.1";
disabled = !isPy3k;
2017-03-15 23:48:34 +00:00
src = fetchFromGitHub {
owner = "PyGithub";
repo = "PyGithub";
rev = "v${version}";
sha256 = "1nl74bp5ikdnrc8xq0qr25ryl1mvarf0xi43k8w5jzlrllhq0nkq";
2017-03-15 23:48:34 +00:00
};
checkInputs = [ httpretty parameterized pytestCheckHook ];
propagatedBuildInputs = [ cryptography deprecated pyjwt requests ];
# Test suite makes REST calls against github.com
doCheck = false;
meta = with lib; {
homepage = "https://github.com/PyGithub/PyGithub";
2017-03-15 23:48:34 +00:00
description = "A Python (2 and 3) library to access the GitHub API v3";
platforms = platforms.all;
license = licenses.gpl3;
maintainers = with maintainers; [ jhhuh ];
};
}