···11+{stdenv, fetchurl, ncurses, gettext}:
22+33+stdenv.mkDerivation {
44+ name = "calcurse-4.0.0";
55+66+ src = fetchurl {
77+ url = http://calcurse.org/files/calcurse-4.0.0.tar.gz;
88+ sha256 = "0d33cpkbhyidvm3xx6iw9ljqdvl6477c2kcwix3bs63nj0ch06v2";
99+ };
1010+1111+ buildInputs = [ncurses gettext];
1212+1313+ meta = {
1414+ description = "A calendar and scheduling application for the command line";
1515+ version = "4.0.0";
1616+ longDescription = ''
1717+ calcurse is a calendar and scheduling application for the command line. It helps
1818+ keep track of events, appointments and everyday tasks. A configurable notification
1919+ system reminds users of upcoming deadlines, the curses based interface can be
2020+ customized to suit user needs and a very powerful set of command line options can
2121+ be used to filter and format appointments, making it suitable for use in scripts.
2222+ '';
2323+ homepage = http://calcurse.org/;
2424+ license = stdenv.lib.licenses.bsd2;
2525+ platforms = stdenv.lib.platforms.linux;
2626+ };
2727+}
···22722272 };
22732273 };
2274227422752275+ pkginfo = buildPythonPackage rec {
22762276+ version = "1.2.1";
22772277+ name = "pkginfo-${version}";
22782278+22792279+ src = pkgs.fetchurl {
22802280+ url = "https://pypi.python.org/packages/source/p/pkginfo/${name}.tar.gz";
22812281+ sha256 = "0g0g6avplfqw1adzqybbrh1a2z0kfjl8qn3annkrc7w3ibz6sgxd";
22822282+ };
22832283+22842284+ doCheck = false; # I don't know why, but with doCheck = true it fails.
22852285+22862286+ meta = {
22872287+ homepage = https://pypi.python.org/pypi/pkginfo;
22882288+ license = licenses.mit;
22892289+ description = "Query metadatdata from sdists / bdists / installed packages.";
22902290+22912291+ longDescription = ''
22922292+ This package provides an API for querying the distutils metadata
22932293+ written in the PKG-INFO file inside a source distriubtion (an sdist)
22942294+ or a binary distribution (e.g., created by running bdist_egg). It can
22952295+ also query the EGG-INFO directory of an installed distribution, and the
22962296+ *.egg-info stored in a “development checkout” (e.g, created by running
22972297+ setup.py develop).
22982298+ '';
22992299+ };
23002300+ };
23012301+22752302 pretend = buildPythonPackage rec {
22762303 name = "pretend-1.0.8";
22772304