about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/smugpy/default.nix
blob: 5eb8d77a244d63cadc9b18527a6e5d2a1a8887db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildPythonPackage, fetchFromGitHub }:

buildPythonPackage rec {
  name    = pname + "-" + version;
  pname   = "smugpy";
  version = "20131218";

  src = fetchFromGitHub {
    owner  = "chrishoffman";
    repo   = pname;
    rev    = "f698d6749ce446e3d6c7d925b2cd1cd5b3d695ea";
    sha256 = "029x6hm1744iznv4sw8sfyl974wmx1sqnr1k5dvzzwpk3ja49a1y";
  };

  meta = with stdenv.lib; {
    description = "Python library for the SmugMug API";
    license = with licenses; [ mit ];
    homepage = https://github.com/chrishoffman/smugpy;
  };

  doCheck = false; # Tries to login to Smugmug…
}