Skip to content

Commit

Permalink
python3Packages.hydra-check: init at 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
makefu committed Apr 13, 2020
1 parent 84cf00f commit b02211c
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
45 changes: 45 additions & 0 deletions pkgs/development/python-modules/hydra-check/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, docopt
, requests
, beautifulsoup4
, black
, mypy
, flake8
}:

buildPythonPackage rec {
pname = "hydra-check";
version = "1.1.1";
disabled = pythonOlder "3.5";

src = fetchFromGitHub {
owner = "nix-community";
repo = "hydra-check";
rev = version;
sha256 = "1dmsscsib8ckp496gsfqxmq8d35zs71n99xmziq9iprvy7n5clq2";
};

propagatedBuildInputs = [
docopt
requests
beautifulsoup4
];

checkInputs = [ mypy ];

checkPhase = ''
echo -e "\x1b[32m## run mypy\x1b[0m"
mypy hydracheck
'';

meta = with lib;{
description = "check hydra for the build status of a package";
homepage = "https://github.com/nix-community/hydra-check";
license = licenses.mit;
maintainers = with maintainers; [ makefu ];
};
}

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12112,6 +12112,8 @@ in

hydraAntLogger = callPackage ../development/libraries/java/hydra-ant-logger { };

hydra-check = with python3.pkgs; toPythonApplication hydra-check;

hyena = callPackage ../development/libraries/hyena { };

hyperscan = callPackage ../development/libraries/hyperscan { };
Expand Down
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4004,6 +4004,8 @@ in {

hypothesis = callPackage ../development/python-modules/hypothesis { };

hydra-check = callPackage ../development/python-modules/hydra-check { };

colored = callPackage ../development/python-modules/colored { };

xdg = callPackage ../development/python-modules/xdg { };
Expand Down

0 comments on commit b02211c

Please sign in to comment.