Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 2 additions & 17 deletions pkgs/development/python-modules/betterproto/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,13 @@
python,
pydantic,
pytest7CheckHook,
pytest-asyncio,
pytest-asyncio_0_21,
pytest-mock,
typing-extensions,
tomlkit,
grpcio-tools,
}:

let
# using a older version of pytest-asyncio only for tests
# https://github.com/pytest-dev/pytest-asyncio/issues/928
pytest-asyncio_23_8 = (
pytest-asyncio.overridePythonAttrs (old: rec {
version = "0.23.8";
src = fetchFromGitHub {
inherit (old.src) owner repo;
tag = "v${version}";
hash = "sha256-kMv0crYuYHi1LF+VlXizZkG87kSL7xzsKq9tP9LgFVY=";
};
})
);
in

buildPythonPackage rec {
pname = "betterproto";
version = "2.0.0b6";
Expand Down Expand Up @@ -70,7 +55,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
grpcio-tools
pydantic
pytest-asyncio_23_8
pytest-asyncio_0_21
pytest-mock
pytest7CheckHook
tomlkit
Expand Down