Skip to content

Instantly share code, notes, and snippets.

@alech
Created August 20, 2018 08:38
Show Gist options
  • Save alech/57334692554d21537fc1aa46f6e4589f to your computer and use it in GitHub Desktop.
Save alech/57334692554d21537fc1aa46f6e4589f to your computer and use it in GitHub Desktop.
#{ stdenv, fetchurl, python3Packages }:
with import <nixpkgs> {};
python3Packages.buildPythonApplication rec {
name = "foobar";
version = "0.23.23.44";
meta = {
description = "foobar tool";
};
src = ./.;
propagatedBuildInputs = [
pandoc
python36
python36Packages.pyyaml
python36Packages.XlsxWriter
python36Packages.dateutil
python36Packages.pandocfilters
python36Packages.openpyxl
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment