summary refs log tree commit diff
path: root/pkgs/development/python-modules/flup/default.nix
blob: fa19d9bdf7a560ee64309104da16cd6cd6f873be (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
{ lib
, buildPythonPackage
, isPy3k
, fetchPypi
}:

buildPythonPackage rec {
  pname = "flup";
  version = "1.0.3";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "5eb09f26eb0751f8380d8ac43d1dfb20e1d42eca0fa45ea9289fa532a79cd159";
  };

  meta = with lib; {
    homepage = "https://www.saddi.com/software/flup/";
    description = "FastCGI Python module set";
    license = licenses.bsd0;
  };

}