summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Silva <123550+andresilva@users.noreply.github.com>2020-11-30 21:03:03 +0000
committerDrashna Jael're <drashna@live.com>2021-01-12 22:46:06 -0800
commit7483e0712b05e8614b185737c4bc751c7f3d4004 (patch)
tree4e90b68f332bf02923509ea97b407bec806c1235
parent1375f426a80d97000418d5c480dd701540d4037c (diff)
nix-shell: add milc dependency (#11086)
-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