depot/third_party/nixpkgs/pkgs/development/python-modules/pocket/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

25 lines
496 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "pocket";
version = "0.3.6";
src = fetchPypi {
inherit pname version;
sha256 = "1fc9vc5nyzf1kzmnrs18dmns7nn8wjfrg7br1w4c5sgs35mg2ywh";
};
buildInputs = [ requests ];
meta = with lib; {
description = "Wrapper for the pocket API";
homepage = "https://github.com/tapanpandita/pocket";
license = licenses.bsd3;
maintainers = with maintainers; [ ericsagnes ];
};
}