mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
48 lines
880 B
Nix
48 lines
880 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
ndg-httpsclient,
|
|
netifaces,
|
|
pyasn1,
|
|
pyopenssl,
|
|
requests,
|
|
six,
|
|
urllib3,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "advocate";
|
|
version = "1.0.0";
|
|
format = "setuptools";
|
|
|
|
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 = "SSRF-preventing wrapper around Python's requests library";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ pborzenkov ];
|
|
};
|
|
}
|