52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, coverage
|
|
, mock
|
|
, ply
|
|
, pytest-runner
|
|
, pytestCheckHook
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "stone";
|
|
version = "3.2.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0xby5mpsms7b2rv8j6mvxzmzz5i9ii01brb9ylxz6kiv2i08piwv";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "pytest-runner == 5.2.0" "pytest-runner" \
|
|
--replace "pytest < 5" "pytest"
|
|
substituteInPlace test/requirements.txt \
|
|
--replace "coverage==5.3" "coverage"
|
|
'';
|
|
|
|
nativeBuildInputs = [ pytest-runner ];
|
|
|
|
propagatedBuildInputs = [ ply six ];
|
|
|
|
checkInputs = [ pytestCheckHook coverage mock ];
|
|
|
|
# try to import from `test` directory, which is exported by the python interpreter
|
|
# and cannot be overriden without removing some py3 to py2 support
|
|
disabledTestPaths = [
|
|
"test/test_tsd_types.py"
|
|
"test/test_js_client.py"
|
|
];
|
|
disabledTests = [
|
|
"test_type_name_with_module"
|
|
];
|
|
|
|
pythonImportsCheck = [ "stone" ];
|
|
|
|
meta = with lib; {
|
|
description = "Official Api Spec Language for Dropbox";
|
|
homepage = "https://github.com/dropbox/stone";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|