62 lines
1.1 KiB
Nix
62 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";
|
||
|
};
|
||
|
}
|