Skip to content

Instantly share code, notes, and snippets.

@ivanbrennan
Created October 12, 2017 14:39
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 ivanbrennan/efe3e073ea68194a4beba3ec84af61d7 to your computer and use it in GitHub Desktop.
Save ivanbrennan/efe3e073ea68194a4beba3ec84af61d7 to your computer and use it in GitHub Desktop.
pyhelp
{ buildPythonPackage
, fetchurl
, jinja2
, pyyaml
, ansicolors
, boto
, html5lib
, hypchat
, kubernetes
, progressbar
, redis
, requests
, retrying
, semantic-version
, setuptools
, urllib3
, credstash
, marshmallow
}:
buildPythonPackage rec {
name = "fakecompany-cli-0.8.7";
src = fetchurl {
url = "https://pypi-prod.fakecompany.net/packages/${name}.tar.gz";
sha256 = "5555555555555555555555555555555555555555555555555555";
};
buildInputs = [
jinja2
pyyaml
ansicolors
boto
html5lib
hypchat
kubernetes
progressbar
redis
requests
retrying
semantic-version
setuptools
urllib3
credstash
marshmallow
];
meta = {
description = "fakecompany command line utilities";
homepage = https://github.com/FakeCompany/fakecompany-cli;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment