Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python3Packages.starlette: 0.13.8 -> 0.14.2 #112142

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions pkgs/development/python-modules/starlette/default.nix
Expand Up @@ -10,26 +10,25 @@
, python-multipart
, pyyaml
, requests
, ujson
, aiosqlite
, databases
, pytestCheckHook
, pytest-cov
, pytest-asyncio
, pytestcov
, typing-extensions
, ApplicationServices
}:

buildPythonPackage rec {
pname = "starlette";
version = "0.13.8";
version = "0.14.2";
disabled = isPy27;

src = fetchFromGitHub {
owner = "encode";
repo = pname;
rev = version;
sha256 = "11i0yd8cqwscixajl734g11vf8pghki11c81chzfh8ifmj6mf9jk";
sha256 = "0fz28czvwiww693ig9vwdja59xxs7m0yp1df32ms1hzr99666bia";
};

propagatedBuildInputs = [
Expand All @@ -40,13 +39,14 @@ buildPythonPackage rec {
python-multipart
pyyaml
requests
ujson
] ++ lib.optional stdenv.isDarwin [ ApplicationServices ];

checkInputs = [
aiosqlite
databases
pytestCheckHook
pytest-cov
pytest-asyncio
typing-extensions
];

Expand Down