nixpkgs/pkgs/development/python-modules/advocate/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

46 lines
846 B
Nix

{ 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}";
hash = "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 ];
};
}