My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pinboard/default.nix

23 lines
549 B

{ 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 = "https://github.com/lionheart/pinboard.py";
};
}