pinboard: init at 2.1.8

This commit is contained in:
Jonathan Strickland
2020-10-22 12:54:54 -04:00
committed by Bjørn Forsman
parent c12c13029e
commit b775bc734e
3 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage rec {
pname = "pinboard";
version = "2.1.8";
src = fetchFromGitHub {
owner = "lionheart";
repo = pname;
rev = version;
sha256 = "0ppc3vwv48ahqx6n5c7d7066zhi31cjdik0ma9chq6fscq2idgdf";
};
# tests require an API key
doCheck = false;
meta = with lib; {
description = "A Python wrapper for Pinboard.in";
maintainers = with maintainers; [ djanatyn ];
license = licenses.asl20;
homepage = "http://github.com/lionheart/pinboard.py";
};
}