92b3d6365d
GitOrigin-RevId: 412b9917cea092f3d39f9cd5dead4effd5bc4053
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ lib
|
|
, asn1crypto
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, importlib-metadata
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "scramp";
|
|
version = "1.4.3";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tlocke";
|
|
repo = "scramp";
|
|
rev = version;
|
|
hash = "sha256-BKZam2zLS/SK6rqiUkoeFpQ0bO4pU8CKVNhOM1fv10Y=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
asn1crypto
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
importlib-metadata
|
|
];
|
|
|
|
checkInputs = [
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
# Upstream uses versioningit to set the version
|
|
sed -i '/^name =.*/a version = "${version}"' pyproject.toml
|
|
sed -i "/dynamic =/d" pyproject.toml
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"scramp"
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_readme"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Implementation of the SCRAM authentication protocol";
|
|
homepage = "https://github.com/tlocke/scramp";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|