1{ stdenv, buildPythonPackage, fetchFromGitHub }:
2
3buildPythonPackage rec {
4 pname = "smugpy";
5 version = "20131218";
6
7 src = fetchFromGitHub {
8 owner = "chrishoffman";
9 repo = pname;
10 rev = "f698d6749ce446e3d6c7d925b2cd1cd5b3d695ea";
11 sha256 = "029x6hm1744iznv4sw8sfyl974wmx1sqnr1k5dvzzwpk3ja49a1y";
12 };
13
14 meta = with stdenv.lib; {
15 description = "Python library for the SmugMug API";
16 license = with licenses; [ mit ];
17 homepage = https://github.com/chrishoffman/smugpy;
18 };
19
20 doCheck = false; # Tries to login to Smugmug…
21}