mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
19 lines
537 B
Nix
19 lines
537 B
Nix
{ stdenv, fetchPypi, buildPythonPackage, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "PyWebDAV";
|
|
version = "0.9.8";
|
|
name = "${pname}-${version}";
|
|
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;
|
|
};
|
|
}
|