mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
20 lines
439 B
Nix
20 lines
439 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.7.0";
|
|
pname = "pyperclip";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "979325468ccf682104d5dcaf753f869868100631301d3e72f47babdea5700d1c";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/asweigart/pyperclip";
|
|
license = licenses.bsdOriginal;
|
|
description = "Cross-platform clipboard module";
|
|
};
|
|
}
|