Merge pull request #111832 from fabaff/bump-praw

python3Packages.praw: 7.1.0 -> 7.1.2
This commit is contained in:
Martin Weinelt 2021-02-04 03:25:55 +01:00 committed by GitHub
commit e7b79d6411
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,12 @@
{ lib, buildPythonPackage, fetchFromGitHub
{ lib
, buildPythonPackage
, fetchFromGitHub
, betamax
, betamax-serializers
, betamax-matchers
, mock
, six
, pytestrunner
, prawcore
, pytest
, pytestCheckHook
, requests-toolbelt
, update_checker
, websocket_client
@ -14,19 +14,15 @@
buildPythonPackage rec {
pname = "praw";
version = "7.1.0";
version = "7.1.2";
src = fetchFromGitHub {
owner = "praw-dev";
repo = "praw";
repo = pname;
rev = "v${version}";
sha256 = "07wyn2pa80ps55kk66rvf4daqyn3y5lzxhx6qh1lpn3p2bacbw9h";
sha256 = "sha256-aEx0swjfyBrSu1fgIiAwdwWmk9v5o7sbT5HTVp7L3R4=";
};
nativeBuildInputs = [
pytestrunner
];
propagatedBuildInputs = [
mock
prawcore
@ -38,16 +34,16 @@ buildPythonPackage rec {
betamax
betamax-serializers
betamax-matchers
mock
pytest
pytestCheckHook
requests-toolbelt
six
];
pythonImportsCheck = [ "praw" ];
meta = with lib; {
description = "Python Reddit API wrapper";
homepage = "https://praw.readthedocs.org/";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ fab ];
};
}