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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
954 B
Nix
Raw Normal View History

{ lib
2019-07-04 03:50:30 +01:00
, betamax
, betamax-matchers
2021-11-14 10:53:57 +00:00
, betamax-serializers
, buildPythonPackage
, fetchFromGitHub
2019-07-04 03:50:30 +01:00
, mock
, prawcore
, pytestCheckHook
2021-11-14 10:53:57 +00:00
, pythonOlder
2019-07-04 03:50:30 +01:00
, requests-toolbelt
, update_checker
, websocket-client
2017-11-07 12:53:19 +00:00
}:
buildPythonPackage rec {
pname = "praw";
2022-05-11 08:38:21 +01:00
version = "7.6.0";
2021-11-14 10:53:57 +00:00
format = "setuptools";
2022-05-11 12:36:48 +01:00
disabled = pythonOlder "3.7";
2017-11-07 12:53:19 +00:00
src = fetchFromGitHub {
owner = "praw-dev";
repo = pname;
2017-11-07 12:53:19 +00:00
rev = "v${version}";
2022-05-11 08:38:21 +01:00
sha256 = "sha256-y2eynMsjF4wZd31YoLdtk8F+ga7Z3R+IQkQK0x0RAGA=";
2017-11-07 12:53:19 +00:00
};
propagatedBuildInputs = [
mock
prawcore
2019-07-04 03:50:30 +01:00
update_checker
websocket-client
2017-11-07 12:53:19 +00:00
];
checkInputs = [
betamax
betamax-serializers
betamax-matchers
pytestCheckHook
2019-07-04 03:50:30 +01:00
requests-toolbelt
2017-11-07 12:53:19 +00:00
];
2021-11-14 10:53:57 +00:00
pythonImportsCheck = [
"praw"
];
meta = with lib; {
2017-11-07 12:53:19 +00:00
description = "Python Reddit API wrapper";
2019-07-04 03:50:30 +01:00
homepage = "https://praw.readthedocs.org/";
license = licenses.bsd2;
maintainers = with maintainers; [ fab ];
2017-11-07 12:53:19 +00:00
};
}