mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
43 lines
755 B
Nix
43 lines
755 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
, pytestCheckHook
|
||
|
, fastcore
|
||
|
, packaging
|
||
|
, pythonOlder
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "ghapi";
|
||
|
version = "0.1.19";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonOlder "3.8";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "fastai";
|
||
|
repo = "ghapi";
|
||
|
rev = version;
|
||
|
sha256 = "sha256-UV2cfotRad9jg/X3pOysKJyMi4/XKt24kf6F4aw4vcI=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
fastcore
|
||
|
packaging
|
||
|
];
|
||
|
|
||
|
# Module has no tests
|
||
|
doCheck = false;
|
||
|
|
||
|
pythonImportsCheck = [
|
||
|
"ghapi"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python interface to GitHub's API";
|
||
|
homepage = "https://github.com/fastai/ghapi";
|
||
|
license = with licenses; [ asl20 ];
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|