mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
53 lines
1021 B
Nix
53 lines
1021 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
mock,
|
|
psutil,
|
|
pyopenssl,
|
|
pysendfile,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyftpdlib";
|
|
version = "1.5.10";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-jb3rEhW8ui+3SNrjH/2xqwCFQMKNE7NwThePNooIcSg=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ pysendfile ];
|
|
|
|
optional-dependencies = {
|
|
ssl = [ pyopenssl ];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
psutil
|
|
];
|
|
|
|
# Impure filesystem-related tests cause timeouts
|
|
# on Hydra: https://hydra.nixos.org/build/84374861
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pyftpdlib" ];
|
|
|
|
meta = with lib; {
|
|
description = "Asynchronous FTP server library";
|
|
homepage = "https://github.com/giampaolo/pyftpdlib/";
|
|
changelog = "https://github.com/giampaolo/pyftpdlib/blob/release-${version}/HISTORY.rst";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "ftpbench";
|
|
};
|
|
}
|