3
0
Fork 0
forked from mirrors/nixpkgs

pyperclip: init at 1.5.11

This commit is contained in:
Matthias Beyer 2015-09-07 11:27:43 +02:00
parent 7a2c69c785
commit 51eff28add

View file

@ -11688,6 +11688,24 @@ let
};
};
pyperclip = buildPythonPackage rec {
version = "1.5.11";
name = "pyperclip-${version}";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/p/pyperclip/${name}.zip";
sha256 = "07q8krmi7phizzp192x3j7xbk1gzhc1kc3jp4mxrm32dn84sp1vh";
};
doCheck = false;
meta = {
homepage = "https://github.com/asweigart/pyperclip";
license = licenses.bsdOriginal;
description = "cross-platform clipboard module";
};
};
pysphere = buildPythonPackage rec {
name = "pysphere-0.1.8";