33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{ buildPythonPackage
|
|
, fetchFromGitHub
|
|
, lib
|
|
, passlib
|
|
, pytestCheckHook
|
|
, setuptools
|
|
, setuptools-git
|
|
, twine
|
|
, webtest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pypiserver";
|
|
version = "1.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-1tV3pVEC5sIjT0tjbujU7l41Jx7PQ1dCn4B1r94C9xE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools-git ];
|
|
|
|
propagatedBuildInputs = [ setuptools ];
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
passlib
|
|
pytestCheckHook
|
|
twine
|
|
webtest
|
|
];
|
|
|
|
disabledTests = [
|
|
# fails to install the package
|
|
"test_hash_algos"
|
|
"test_pip_install_authed_succeeds"
|
|
"test_pip_install_open_succeeds"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# requires docker service running
|
|
"docker/test_docker.py"
|
|
];
|
|
|
|
pythonImportsCheck = [ "pypiserver" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/pypiserver/pypiserver";
|
|
description = "Minimal PyPI server for use with pip/easy_install";
|
|
license = with licenses; [ mit zlib ];
|
|
maintainers = with maintainers; [ austinbutler SuperSandro2000 ];
|
|
};
|
|
}
|