nixpkgs/pkgs/development/python-modules/wsgidav/default.nix
2022-11-12 17:43:25 +01:00

61 lines
964 B
Nix

{ lib
, buildPythonPackage
, cheroot
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, defusedxml
, jinja2
, json5
, python-pam
, pyyaml
, requests
, setuptools
, webtest
}:
buildPythonPackage rec {
pname = "wsgidav";
version = "4.1.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mar10";
repo = pname;
rev = "v${version}";
hash = "sha256-iNyXY0txKX4X1+O27T7my8dfs8wqXoG7Kuo9yN9SRnY=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
defusedxml
jinja2
json5
python-pam
pyyaml
];
checkInputs = [
cheroot
pytestCheckHook
requests
webtest
];
pythonImportsCheck = [
"wsgidav"
];
meta = with lib; {
description = "Generic and extendable WebDAV server based on WSGI";
homepage = "https://wsgidav.readthedocs.io/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}