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

49 lines
1 KiB
Nix
Raw Normal View History

2017-11-07 13:53:19 +01:00
{ stdenv, buildPythonPackage, fetchFromGitHub
, requests, decorator, flake8, mock, six, update_checker, pytestrunner, prawcore
2019-02-14 17:08:09 +01:00
, pytest_3, betamax, betamax-serializers, betamax-matchers, requests_toolbelt
2017-11-07 13:53:19 +01:00
}:
buildPythonPackage rec {
pname = "praw";
version = "6.0.0";
2017-11-07 13:53:19 +01:00
src = fetchFromGitHub {
owner = "praw-dev";
repo = "praw";
rev = "v${version}";
sha256 = "0y6nyz8vf98gl1qfmnznv3dbvlbzdl6mz99vk673nyfn3hbs451i";
2017-11-07 13:53:19 +01:00
};
postPatch = ''
# drop upper bound of prawcore requirement
sed -ri "s/'(prawcore >=.+), <.+'/'\1'/" setup.py
'';
2017-11-07 13:53:19 +01:00
propagatedBuildInputs = [
requests
decorator
flake8
mock
six
update_checker
pytestrunner
prawcore
];
checkInputs = [
2019-02-14 17:08:09 +01:00
pytest_3
2017-11-07 13:53:19 +01:00
betamax
betamax-serializers
betamax-matchers
requests_toolbelt
];
meta = with stdenv.lib; {
description = "Python Reddit API wrapper";
homepage = https://praw.readthedocs.org/;
2017-11-07 13:53:19 +01:00
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ ];
2017-11-07 13:53:19 +01:00
};
}