mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, httpx
|
|
, pytest-asyncio
|
|
, pytest-httpserver
|
|
, pytestCheckHook
|
|
, python-slugify
|
|
, python-status
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "simple-rest-client";
|
|
version = "1.1.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "allisson";
|
|
repo = "python-simple-rest-client";
|
|
rev = version;
|
|
sha256 = "sha256-kyoFtPa94c5EAT7wBEXdkPEg8Bp3hJQQoFsutap1qvs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
httpx
|
|
python-slugify
|
|
python-status
|
|
];
|
|
|
|
checkInputs = [
|
|
pytest-asyncio
|
|
pytest-httpserver
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "pytest-runner" ""
|
|
substituteInPlace pytest.ini \
|
|
--replace " --cov=simple_rest_client --cov-report=term-missing" ""
|
|
substituteInPlace requirements-dev.txt \
|
|
--replace "asyncmock" ""
|
|
'';
|
|
|
|
disabledTestPaths = [
|
|
"tests/test_decorators.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"simple_rest_client"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple REST client for Python";
|
|
homepage = "https://github.com/allisson/python-simple-rest-client";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|