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

python37Packages.starlette: 0.13.0 -> 0.13.2 #81304

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
@@ -1,7 +1,7 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, fetchurl
, aiofiles
, graphene
, itsdangerous
Expand All @@ -20,12 +20,12 @@

buildPythonPackage rec {
pname = "starlette";
version = "0.13.0";
version = "0.13.2";
disabled = isPy27;

src = fetchPypi {
inherit pname version;
sha256 = "6bd414152d40d000ccbf6aa40ed89718b40868366a0f69fb83034f416303acef";
src = fetchurl {
url = "https://github.com/encode/starlette/archive/${version}.tar.gz";
sha256 = "1snnmbyia7k18di6i3wij4vwmczcr6mj6x9fwrw7ndbil2r36g42";
};

propagatedBuildInputs = [
Expand Down