Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

Commit

Permalink
Merge branch 'oardocker'
Browse files Browse the repository at this point in the history
  • Loading branch information
augu5te committed Dec 7, 2018
2 parents a1342cc + bbdacbe commit 7f47946
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
3 changes: 2 additions & 1 deletion default.nix
Expand Up @@ -176,7 +176,8 @@ let
pytest_flask = callPackage ./pytest-flask { };
oar = callPackage ./oar { };
oar_dev = callPackage ./oar/dev.nix { };

oardocker = callPackage ./oardocker { };

inherit pkgs;
inherit pkgs-unstable;
}
Expand Down
29 changes: 29 additions & 0 deletions oardocker/default.nix
@@ -0,0 +1,29 @@
{ stdenv, pythonPackages }:

pythonPackages.buildPythonPackage rec {
pname = "oardocker";
version = "1.5.0dev";

src = fetchGit {
url = "https://github.com/oar-team/oar-docker.git";
rev = "33a146bb19d2eb0966a0979b87ab504f80144b5b";
ref = "master";
};

propagatedBuildInputs = with pythonPackages; [
click
docker
sh
tabulate
websocket_client
arrow
];

doCheck = false;

meta = with stdenv.lib; {
homepage = "https://github.com/oar-team/oar-docker";
description = "Manage a small OAR developpement cluster with Docker.";
license = licenses.lgpl3;
};
}

0 comments on commit 7f47946

Please sign in to comment.