1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 requests,
6}:
7
8buildPythonPackage rec {
9 pname = "pocket";
10 version = "0.3.6";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "1fc9vc5nyzf1kzmnrs18dmns7nn8wjfrg7br1w4c5sgs35mg2ywh";
16 };
17
18 buildInputs = [ requests ];
19
20 meta = with lib; {
21 description = "Wrapper for the pocket API";
22 homepage = "https://github.com/tapanpandita/pocket";
23 license = licenses.bsd3;
24 maintainers = with maintainers; [ ];
25 };
26}