python3Packages.advocate: init at 1.0.0
This commit is contained in:
parent
c815f5e736
commit
00d630efa1
45
pkgs/development/python-modules/advocate/default.nix
Normal file
45
pkgs/development/python-modules/advocate/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, ndg-httpsclient
|
||||
, netifaces
|
||||
, pyasn1
|
||||
, pyopenssl
|
||||
, requests
|
||||
, six
|
||||
, urllib3
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "advocate";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "JordanMilne";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-opObkjkad+yrLE2b7DULHjGuNeVhu4fEmSavgA39YPw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ndg-httpsclient
|
||||
netifaces
|
||||
pyasn1
|
||||
pyopenssl
|
||||
requests
|
||||
six
|
||||
urllib3
|
||||
];
|
||||
|
||||
# The tests do network requests, so disabled
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "advocate" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/JordanMilne/Advocate";
|
||||
description = "An SSRF-preventing wrapper around Python's requests library";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ pborzenkov ];
|
||||
};
|
||||
}
|
@ -203,6 +203,8 @@ in {
|
||||
|
||||
advantage-air = callPackage ../development/python-modules/advantage-air { };
|
||||
|
||||
advocate = callPackage ../development/python-modules/advocate { };
|
||||
|
||||
aemet-opendata = callPackage ../development/python-modules/aemet-opendata { };
|
||||
|
||||
aenum = callPackage ../development/python-modules/aenum { };
|
||||
|
Loading…
Reference in New Issue
Block a user