mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
46 lines
1.0 KiB
Nix
46 lines
1.0 KiB
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, lib
|
|
, pyopenssl
|
|
, pytestCheckHook
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "servefile";
|
|
version = "0.5.4";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sebageek";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-hIqXwhmvstCslsCO973oK5FF2c8gZJ0wNUI/z8W+OjU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pyopenssl ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook requests ];
|
|
# Test attempts to connect to a port on localhost which fails in nix build
|
|
# environment.
|
|
disabledTests = [
|
|
"test_abort_download"
|
|
"test_big_download"
|
|
"test_https_big_download"
|
|
"test_https"
|
|
"test_redirect_and_download"
|
|
"test_specify_port"
|
|
"test_upload_size_limit"
|
|
"test_upload"
|
|
];
|
|
pythonImportsCheck = [ "servefile" ];
|
|
|
|
meta = with lib; {
|
|
description = "Serve files from shell via a small HTTP server";
|
|
homepage = "https://github.com/sebageek/servefile";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ samuela ];
|
|
};
|
|
}
|