5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
cheroot,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
defusedxml,
|
|
jinja2,
|
|
json5,
|
|
python-pam,
|
|
pyyaml,
|
|
requests,
|
|
setuptools,
|
|
webtest,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wsgidav";
|
|
version = "4.3.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mar10";
|
|
repo = "wsgidav";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-vUqNC7ixpta0s7wRC5ROSKMa/MsgEBu5rr0XNu69FRw=";
|
|
};
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
defusedxml
|
|
jinja2
|
|
json5
|
|
python-pam
|
|
pyyaml
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
cheroot
|
|
pytestCheckHook
|
|
requests
|
|
webtest
|
|
];
|
|
|
|
pythonImportsCheck = [ "wsgidav" ];
|
|
|
|
meta = with lib; {
|
|
description = "Generic and extendable WebDAV server based on WSGI";
|
|
homepage = "https://wsgidav.readthedocs.io/";
|
|
changelog = "https://github.com/mar10/wsgidav/blob/v${version}/CHANGELOG.md";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "wsgidav";
|
|
};
|
|
}
|