Files
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

37 lines
714 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pyasn1,
pyopenssl,
}:
buildPythonPackage rec {
version = "0.5.1";
format = "setuptools";
pname = "ndg-httpsclient";
src = fetchFromGitHub {
owner = "cedadev";
repo = "ndg_httpsclient";
rev = version;
sha256 = "0lhsgs4am4xyjssng5p0vkfwqncczj1dpa0vss4lrhzq86mnn5rz";
};
propagatedBuildInputs = [
pyasn1
pyopenssl
];
# uses networking
doCheck = false;
meta = {
homepage = "https://github.com/cedadev/ndg_httpsclient/";
description = "Provide enhanced HTTPS support for httplib and urllib2 using PyOpenSSL";
mainProgram = "ndg_httpclient";
license = lib.licenses.bsd2;
maintainers = [ ];
};
}