summary refs log tree commit diff
path: root/pkgs/development/python-modules/qserve/default.nix
blob: f316e3fb65c1371bbf5e219da96b64bdcf261440 (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.3.0";
  disabled = isPy3k;

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

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

}