Skip to content

Commit

Permalink
nix-shell: add milc dependency (#11086)
Browse files Browse the repository at this point in the history
  • Loading branch information
andresilva committed Nov 30, 2020
1 parent 02fb0de commit cc08e30
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions shell.nix
Expand Up @@ -16,6 +16,25 @@ let
inherit pname version;
sha256 = "1yaimcgz8w0ps1wk28wk9g9zdidp79d14xqqj9rjkvxalvx2f5qx";
};

doCheck = false;
};

milc = with pkgs.python3Packages; buildPythonPackage rec {
pname = "milc";
version = "1.0.10";

src = fetchPypi {
inherit pname version;
sha256 = "1q1p7qrqk78mw67nhv04zgxaq8himmdxmy2vp4fmi7chwgcbpi32";
};

propagatedBuildInputs = [
appdirs
argcomplete
colorama
];

doCheck = false;
};

Expand All @@ -25,6 +44,7 @@ let
argcomplete
colorama
hjson
milc
pygments
# requirements-dev.txt
nose2
Expand Down

0 comments on commit cc08e30

Please sign in to comment.