summary refs log tree commit diff
path: root/pkgs/development/python-modules/qserve/default.nix
blob: 0548b6fdf17612180177a979568b1c870863556a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
}:

buildPythonPackage rec {
  pname = "qserve";
  version = "0.2.8";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "0b04b2d4d11b464ff1efd42a9ea9f8136187d59f4076f57c9ba95361d41cd7ed";
  };

  meta = with lib; {
    description = "Job queue server";
    homepage = "https://github.com/pediapress/qserve";
    license = licenses.bsd3;
  };

}