summary refs log tree commit diff
path: root/pkgs/development/python-modules/howdoi/default.nix
blob: dc9c79781f11041aed6ca16b4d7ac3fde65d6ac0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi
, six, requests-cache, pygments, pyquery }:

buildPythonPackage rec {
  pname = "howdoi";
  version = "1.1.13";

  src = fetchPypi {
    inherit pname version;
    sha256 = "96f5e057fd45a84379d77e46233165d95211e6b3ea869cb5c0df172aa322b566";
  };

  propagatedBuildInputs = [ six requests-cache pygments pyquery ];

  meta = with stdenv.lib; {
    description = "Instant coding answers via the command line";
    homepage = https://pypi.python.org/pypi/howdoi;
    license = licenses.mit;
  };
}