a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
26 lines
654 B
Nix
26 lines
654 B
Nix
{ lib, buildPythonPackage, isPy27, fetchPypi, pytest, pytestCheckHook }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.3.0";
|
|
pname = "ci-info";
|
|
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-H9UMvUAfKa3/7rGLBIniMtFqwadFisa8MW3qtq5TX7A=";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytest pytestCheckHook ];
|
|
|
|
doCheck = false; # both tests access network
|
|
|
|
pythonImportsCheck = [ "ci_info" ];
|
|
|
|
meta = with lib; {
|
|
description = "Gather continuous integration information on the fly";
|
|
homepage = "https://github.com/mgxd/ci-info";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|