-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #220547 from anthonyroussel/gns_2_2_38
gns3-server,gns3-gui: 2.2.35.1 -> 2.2.42
- Loading branch information
Showing
5 changed files
with
95 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ lib | ||
, buildPythonPackage | ||
, fetchFromGitHub | ||
, flit-core | ||
, aiohttp | ||
, httpx | ||
, pyopenssl | ||
, requests | ||
, trustme | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "truststore"; | ||
version = "0.7.0"; | ||
format = "pyproject"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "sethmlarson"; | ||
repo = pname; | ||
rev = "refs/tags/v${version}"; | ||
sha256 = "sha256-Q3HSHcqoG2DEXujL05lj3GLNu4jJ61i7VFxMou8c0cE="; | ||
}; | ||
|
||
nativeBuildInputs = [ | ||
flit-core | ||
]; | ||
|
||
propagatedBuildInputs = [ | ||
aiohttp | ||
httpx | ||
pyopenssl | ||
requests | ||
trustme | ||
]; | ||
|
||
# tests requires networking | ||
doCheck = false; | ||
|
||
meta = with lib; { | ||
homepage = "https://github.com/sethmlarson/truststore"; | ||
description = "Verify certificates using native system trust stores"; | ||
changelog = "https://github.com/sethmlarson/truststore/releases/tag/v${version}"; | ||
license = licenses.mit; | ||
maintainers = with maintainers; [ anthonyroussel ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters