mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
python3Packages.ci-info: init at 0.2.0
This commit is contained in:
parent
017c7a4940
commit
87479d7d2a
26
pkgs/development/python-modules/ci-info/default.nix
Normal file
26
pkgs/development/python-modules/ci-info/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib, buildPythonPackage, isPy27, fetchPypi, pytest, pytestCheckHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.2.0";
|
||||
pname = "ci-info";
|
||||
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "05j6pamk8sd51qmvpkl3f7sxajmncrqm0cz6n6bqgsvzjwn66w6x";
|
||||
};
|
||||
|
||||
checkInputs = [ 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 ];
|
||||
};
|
||||
}
|
|
@ -2072,6 +2072,8 @@ in {
|
|||
|
||||
chevron = callPackage ../development/python-modules/chevron {};
|
||||
|
||||
ci-info = callPackage ../development/python-modules/ci-info { };
|
||||
|
||||
cli-helpers = callPackage ../development/python-modules/cli-helpers {};
|
||||
|
||||
cmarkgfm = callPackage ../development/python-modules/cmarkgfm { };
|
||||
|
|
Loading…
Reference in a new issue