pythonPackages.msrest: 0.6.4 -> 0.6.7

This commit is contained in:
Jonathan Ringer 2019-06-19 11:53:37 -07:00 committed by Frederik Rietdijk
parent 13702bd491
commit e8fc86dbaa

View File

@ -1,6 +1,6 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchPypi
, isPy3k , isPy3k
, requests , requests
, requests_oauthlib , requests_oauthlib
@ -18,16 +18,12 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "0.6.4"; version = "0.6.7";
pname = "msrest"; pname = "msrest";
# no tests in PyPI tarball src = fetchPypi {
# see https://github.com/Azure/msrest-for-python/pull/152 inherit pname version;
src = fetchFromGitHub { sha256 = "07136g3j7zgcvkxki4v6q1p2dm1nzzc28181s8dwic0y4ml8qlq5";
owner = "Azure";
repo = "msrest-for-python";
rev = "v${version}";
sha256 = "0ilrc06qq0dw4qqzq1dq2vs6nymc39h19w52dwcyawwfalalnjzi";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -48,6 +44,6 @@ buildPythonPackage rec {
description = "The runtime library 'msrest' for AutoRest generated Python clients."; description = "The runtime library 'msrest' for AutoRest generated Python clients.";
homepage = "https://azure.microsoft.com/en-us/develop/python/"; homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ bendlas ]; maintainers = with maintainers; [ bendlas jonringer ];
}; };
} }