diff options
| author | wisut hantanong <wizzup@gmail.com> | 2017-08-31 18:21:45 +0700 |
|---|---|---|
| committer | wisut hantanong <wizzup@gmail.com> | 2017-08-31 21:18:38 +0700 |
| commit | c0433265bbca6db732aa1e5aec00c16ee7b292b8 (patch) | |
| tree | abefc0542e59359011b10e9124db8d8e3452178c /pkgs/development/python-modules | |
| parent | 6ba7b4c672260d2543b45d243ef6177a672c9643 (diff) | |
pythonPackages.smugpy : move to separate expression
Diffstat (limited to 'pkgs/development/python-modules')
| -rw-r--r-- | pkgs/development/python-modules/smugpy/default.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/smugpy/default.nix b/pkgs/development/python-modules/smugpy/default.nix new file mode 100644 index 000000000000..5eb8d77a244d --- /dev/null +++ b/pkgs/development/python-modules/smugpy/default.nix @@ -0,0 +1,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… +} |
