about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycups/default.nix
blob: ef36ec5d0700190def1ba775696e137fc3a7a77f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, python, cups}:

stdenv.mkDerivation {
  name = "pycups-1.9.45";
  src = fetchurl {
    url = http://cyberelk.net/tim/data/pycups/pycups-1.9.45.tar.bz2;
    md5 = "ff634a6751f8a859ed26751bf03abef0";
  };
  installPhase = "python ./setup.py install --prefix $out";
  buildInputs = [ python cups ];
}