nixpkgs/pkgs/development/python-modules/mwclient/default.nix

31 lines
747 B
Nix
Raw Normal View History

2019-02-20 13:39:33 +00:00
{ stdenv, buildPythonPackage, fetchFromGitHub
, requests, requests_oauthlib, six
, pytest, pytestpep8, pytestcache, pytestcov, responses, mock
}:
buildPythonPackage rec {
version = "0.10.0";
pname = "mwclient";
src = fetchFromGitHub {
owner = "mwclient";
repo = "mwclient";
rev = "v${version}";
sha256 = "1c3q6lwmb05yqywc4ya98ca7hsl15niili8rccl4n1yqp77c103v";
};
2019-02-20 13:39:33 +00:00
checkInputs = [ pytest pytestpep8 pytestcache pytestcov responses mock ];
2019-02-20 13:39:33 +00:00
propagatedBuildInputs = [ requests requests_oauthlib six ];
checkPhase = ''
py.test
'';
meta = with stdenv.lib; {
description = "Python client library to the MediaWiki API";
license = licenses.mit;
homepage = https://github.com/mwclient/mwclient;
};
}