summary refs log tree commit diff
path: root/pkgs/development/python-modules/howdoi/default.nix
blob: a72338143a14c772d6d67dbcc8f8045723e71546 (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.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1dx9ms0b3z3bx02paj78cyi788d8l6cpd3jqbn3j88w736i4jknz";
  };

  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;
  };
}