Advertisement
Guest User

Untitled

a guest
Nov 18th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. let
  2. unstablePkgs = import <nixpkgs> {};
  3. python-unstable3 = unstablePkgs.python3;
  4. beancount-python-packages = python-packages: with python-packages; [
  5. beancount
  6. flake8
  7. inflect
  8. isort
  9. jedi
  10. pylint
  11. virtualenv
  12. yapf
  13. yamllint
  14. ];
  15. beancount-python = python-unstable3.withPackages beancount-python-packages;
  16. in
  17. unstablePkgs.stdenv.mkDerivation {
  18. name = "beancount-python";
  19. buildInputs = [ beancount-python ];
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement