summary refs log tree commit diff
path: root/shell.nix
diff options
context:
space:
mode:
authorAndré Silva <123550+andresilva@users.noreply.github.com>2020-11-30 21:03:03 +0000
committerGitHub <noreply@github.com>2020-11-30 21:03:03 +0000
commitcc08e3082eeadcb75719ec5b5128e94a910a0fcb (patch)
tree0b13a955ef6e2058488307f7e8b493ffb3eed412 /shell.nix
parent02fb0de59bdbf00cde2c40dd67ec9342890481f7 (diff)
nix-shell: add milc dependency (#11086)
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
index 6c82852487..7814a10d1a 100644
--- a/shell.nix
+++ b/shell.nix
@@ -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;
   };
 
@@ -25,6 +44,7 @@ let
     argcomplete
     colorama
     hjson
+    milc
     pygments
     # requirements-dev.txt
     nose2