Skip to content

Instantly share code, notes, and snippets.

@matthew-piziak
Created November 18, 2018 18:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthew-piziak/8217248247e3786bdbe13cacbfe3f755 to your computer and use it in GitHub Desktop.
Save matthew-piziak/8217248247e3786bdbe13cacbfe3f755 to your computer and use it in GitHub Desktop.
with let
unstablePkgs = import <unstable> {};
python-unstable3 = unstablePkgs.python3;
beancount-python-packages = python-packages: with python-packages; [
beancount
flake8
inflect
isort
jedi
pylint
virtualenv
yapf
yamllint
];
beancount-python = python-unstable3.withPackages beancount-python-packages;
in
stdenv.mkDerivation {
name = "beancount-python";
buildInputs = [ beancount-python ];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment