summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/nassl
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
committerRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
commit4bc5fbef9d159e143fb7e2c3231932e6e76f667c (patch)
treee2198f5c552e0667d838b8ec764ddb3a4d8f6dec /pkgs/development/python-modules/nassl
parentjq: fix build with structured-attrs on darwin (diff)
parentMerge pull request #123802 from superherointj/package-virtmanager-bugfix (diff)
downloadnixpkgs-origin/structured-attrs.tar.gz
Merge remote-tracking branch 'upstream/master' into structured-attrsorigin/structured-attrs
Diffstat (limited to 'pkgs/development/python-modules/nassl')
-rw-r--r--pkgs/development/python-modules/nassl/default.nix25
1 files changed, 16 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/nassl/default.nix b/pkgs/development/python-modules/nassl/default.nix
index 908ecff8c177..97033224c14a 100644
--- a/pkgs/development/python-modules/nassl/default.nix
+++ b/pkgs/development/python-modules/nassl/default.nix
@@ -8,12 +8,15 @@
, tls-parser
, cacert
, pytestCheckHook
+, pythonOlder
}:
let
- zlibStatic = pkgsStatic.zlib.override {
+ zlibStatic = (pkgsStatic.zlib.override {
splitStaticOutput = false;
- };
+ }).overrideAttrs (oldAttrs: {
+ NIX_CFLAGS_COMPILE = "${oldAttrs.NIX_CFLAGS_COMPILE} -fPIC";
+ });
nasslOpensslArgs = {
static = true;
enableSSL2 = true;
@@ -67,13 +70,14 @@ let
in
buildPythonPackage rec {
pname = "nassl";
- version = "3.1.0";
+ version = "4.0.0";
+ disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "nabla-c0d3";
repo = pname;
rev = version;
- sha256 = "1x1v0fpb6gcc2r0k2rsy0mc3v25s3qbva78apvi46n08c2l309ci";
+ hash = "sha256-6lk2YfI9km10YbJAn38fvo9qa4iXcByL+udCsDe+kvU=";
};
postPatch = let
@@ -108,18 +112,21 @@ buildPythonPackage rec {
invoke package.wheel
'';
+ doCheck = true;
+
+ pythonImportsCheck = [ "nassl" ];
+
checkInputs = [ pytestCheckHook ];
- checkPhase = ''
- # Skip online tests
- pytest -k 'not Online'
- '';
+ disabledTests = [
+ "Online"
+ ];
meta = with lib; {
homepage = "https://github.com/nabla-c0d3/nassl";
description = "Low-level OpenSSL wrapper for Python 3.7+";
platforms = with platforms; linux ++ darwin;
- license = licenses.agpl3;
+ license = licenses.agpl3Only;
maintainers = with maintainers; [ veehaitch ];
};
}