4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{ lib, stdenv, fetchgit, python, pythonPackages, makeWrapper }:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "carddav-0.1-2014-02-26";
|
|
|
|
src = fetchgit {
|
|
url = "git://github.com/ljanyst/carddav-util";
|
|
rev = "53b181faff5f154bcd180467dd04c0ce69405564";
|
|
sha256 = "0f0raffdy032wlnxfck6ky60r163nhqfbr311y4ry55l60s4497n";
|
|
};
|
|
|
|
buildInputs = [makeWrapper];
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ requests vobject lxml ];
|
|
|
|
doCheck = false; # no test
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp $src/carddav-util.py $out/bin
|
|
|
|
pythondir="$out/lib/${python.libPrefix}/site-packages"
|
|
mkdir -p "$pythondir"
|
|
cp $src/carddav.py "$pythondir"
|
|
'';
|
|
|
|
preFixup = ''
|
|
wrapProgram "$out/bin/carddav-util.py" \
|
|
--prefix PYTHONPATH : "$PYTHONPATH:$(toPythonPath $out)" \
|
|
--prefix PATH : "$prefix/bin:$PATH"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ljanyst/carddav-util";
|
|
description = "A CardDAV import/export utility";
|
|
platforms = platforms.unix;
|
|
license = licenses.isc;
|
|
};
|
|
}
|