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.

57 lines
1.0 KiB
Nix
Raw Normal View History

{ lib
2019-07-04 02:50:30 +00:00
, betamax
, betamax-matchers
2021-11-14 10:53:57 +00:00
, betamax-serializers
, buildPythonPackage
, fetchFromGitHub
2019-07-04 02:50:30 +00:00
, mock
, prawcore
, pytestCheckHook
2021-11-14 10:53:57 +00:00
, pythonOlder
2019-07-04 02:50:30 +00:00
, requests-toolbelt
, update_checker
, websocket-client
2017-11-07 12:53:19 +00:00
}:
buildPythonPackage rec {
pname = "praw";
version = "7.7.1";
2021-11-14 10:53:57 +00:00
format = "setuptools";
2022-05-11 11:36:48 +00:00
disabled = pythonOlder "3.7";
2017-11-07 12:53:19 +00:00
src = fetchFromGitHub {
owner = "praw-dev";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-L7wTHD/ypXVc8GMfl9u16VNb9caLJoXpaMEIzaVVUgo=";
2017-11-07 12:53:19 +00:00
};
propagatedBuildInputs = [
mock
prawcore
2019-07-04 02:50:30 +00:00
update_checker
websocket-client
2017-11-07 12:53:19 +00:00
];
nativeCheckInputs = [
2017-11-07 12:53:19 +00:00
betamax
betamax-serializers
betamax-matchers
pytestCheckHook
2019-07-04 02:50:30 +00: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 02:50:30 +00:00
homepage = "https://praw.readthedocs.org/";
changelog = "https://github.com/praw-dev/praw/blob/v${version}/CHANGES.rst";
2019-07-04 02:50:30 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ fab ];
2017-11-07 12:53:19 +00:00
};
}