python.pkgs.prawcore: init at 0.12.0

This commit is contained in:
Joerg Thalheim 2017-11-07 12:50:11 +00:00
parent b0225f8cbc
commit af9e6c1634
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ stdenv, buildPythonPackage, fetchFromGitHub
, requests
, testfixtures, mock, requests_toolbelt
, betamax, betamax-serializers, betamax-matchers
}:
buildPythonPackage rec {
pname = "prawcore";
version = "0.12.0";
src = fetchFromGitHub {
owner = "praw-dev";
repo = "prawcore";
rev = "v${version}";
sha256 = "1z5fz6v4bv6xw84l4q3rpw3j63bb2dldl0fd6ckz8wqlpb2l45br";
};
propagatedBuildInputs = [
requests
];
checkInputs = [
testfixtures
mock
betamax
betamax-serializers
betamax-matchers
requests_toolbelt
];
meta = with stdenv.lib; {
description = "Low-level communication layer for PRAW";
homepage = http://praw.readthedocs.org/;
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ jgeerds ];
};
}

View file

@ -15095,6 +15095,8 @@ in {
};
};
prawcore = callPackage ../development/python-modules/prawcore { };
premailer = callPackage ../development/python-modules/premailer { };
prettytable = buildPythonPackage rec {