1{ stdenv, buildPythonPackage, fetchPypi
2, six, requests-cache, pygments, pyquery }:
3
4buildPythonPackage rec {
5 pname = "howdoi";
6 version = "1.1.13";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "96f5e057fd45a84379d77e46233165d95211e6b3ea869cb5c0df172aa322b566";
11 };
12
13 propagatedBuildInputs = [ six requests-cache pygments pyquery ];
14
15 meta = with stdenv.lib; {
16 description = "Instant coding answers via the command line";
17 homepage = https://pypi.python.org/pypi/howdoi;
18 license = licenses.mit;
19 };
20}