summary refs log tree commit diff
path: root/pkgs/development/python-modules/mwclient/default.nix
blob: 3544bd631a54e336c1e7b89669c05d4927daaaf6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, buildPythonPackage, fetchFromGitHub, requests, requests_oauthlib
, responses, mock, pytestcov, pytest, pytestcache, pytestpep8, coverage, six }:

buildPythonPackage rec {
  version = "0.9.1";
  pname = "mwclient";
  name = "${pname}-${version}";

  src = fetchFromGitHub {
    owner = "mwclient";
    repo = "mwclient";
    rev = "v${version}";
    sha256 = "0l7l5j7znlyn2yqvdfxr4dq23wyp6d8z49pnkjqy2kan11nrjzym";
  };

  buildInputs = [ mock responses pytestcov pytest pytestcache pytestpep8 coverage ];

  propagatedBuildInputs = [ six requests requests_oauthlib ];

  checkPhase = ''
    py.test
  '';

  meta = with stdenv.lib; {
    description = "Python client library to the MediaWiki API";
    license = licenses.mit;
    homepage = https://github.com/mwclient/mwclient;
  };
}