Advertisement
Guest User

Untitled

a guest
Nov 12th, 2018
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. with import <nixpkgs> {};
  2. let
  3. arsenal = with python2Packages; buildPythonPackage {
  4. name = "arsenal-2.1";
  5. src = fetchurl {
  6. url = "https://files.pythonhosted.org/packages/40/67/fd96ebc8727b81bb8ffac07114681c6a20421458334930eff6d6a17f04a9/arsenal-2.1.tar.gz";
  7. sha256 = "1dj8x5dbbq6b4m0pmprjdy2gk9sckqw974hbrkj8zap56ydpy7vf";
  8. };
  9. };
  10. in
  11. (python2.buildEnv.override {
  12. ignoreCollisions = true;
  13. extraLibs = with python2Packages; [
  14. ipython
  15. matplotlib
  16. arsenal
  17. ];
  18. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement