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

43 lines
893 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy27
2017-11-07 12:50:11 +00:00
, requests
, testfixtures, mock, requests_toolbelt
2019-10-27 01:20:34 +01:00
, betamax, betamax-serializers, betamax-matchers, pytest
2017-11-07 12:50:11 +00:00
}:
buildPythonPackage rec {
pname = "prawcore";
version = "1.5.0";
disabled = isPy27; # see https://github.com/praw-dev/prawcore/pull/101
2017-11-07 12:50:11 +00:00
2019-02-09 09:32:00 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1f1eafc8a65d671f9892354f73142014fbb5d3a9ee621568c662d0a354e0578b";
2017-11-07 12:50:11 +00:00
};
propagatedBuildInputs = [
requests
];
checkInputs = [
testfixtures
mock
betamax
betamax-serializers
betamax-matchers
requests_toolbelt
2019-10-27 01:20:34 +01:00
pytest
2017-11-07 12:50:11 +00:00
];
2019-10-27 01:20:34 +01:00
checkPhase = ''
pytest
'';
meta = with lib; {
2017-11-07 12:50:11 +00:00
description = "Low-level communication layer for PRAW";
homepage = "https://praw.readthedocs.org/";
2017-11-07 12:50:11 +00:00
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ ];
2017-11-07 12:50:11 +00:00
};
}