summary refs log tree commit diff
path: root/pkgs/development/python-modules/pywebdav/default.nix
blob: 15cb474f5fe9e98c7ed027c978b4a52480d8f864 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchPypi, buildPythonPackage, isPy3k }:

buildPythonPackage rec {
  pname = "PyWebDAV";
  version = "0.9.8";
  disabled = isPy3k;
  src = fetchPypi {
    inherit pname version;
    sha256 = "1v10vg79h85milnq8w7yd75qq5z6297ywkn9b2kxajldzwqxn3ji";
  };
  meta = with stdenv.lib; {
    homepage = http://code.google.com/p/pywebdav/;
    description = "WebDAV library including a standalone server for python";
    maintainers = with maintainers; [ johbo ];
    license = licenses.gpl2Plus;
  };
}