aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/ci-info/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/ci-info/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/ci-info/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/ci-info/default.nix b/nixpkgs/pkgs/development/python-modules/ci-info/default.nix
new file mode 100644
index 00000000000..d27f7cf0a82
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/ci-info/default.nix
@@ -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 ];
+ };
+}