blob: a131bfd7dcb5b7b600432c4e2f81358213f65101 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
{
lib,
asn1crypto,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pytest-mock,
pytestCheckHook,
versioningit,
}:
buildPythonPackage rec {
pname = "scramp";
version = "1.4.5";
pyproject = true;
src = fetchFromGitHub {
owner = "tlocke";
repo = "scramp";
rev = version;
hash = "sha256-KpododRJ+CYRGBR7Sr5cVBhJvUwh9YmPERd/DAJqEcY=";
};
build-system = [
hatchling
versioningit
];
dependencies = [ asn1crypto ];
nativeCheckInputs = [
pytest-mock
pytestCheckHook
];
postPatch = ''
# Upstream uses versioningit to set the version
sed -i "/versioningit >=/d" pyproject.toml
sed -i '/^name =.*/a version = "${version}"' pyproject.toml
sed -i "/dynamic =/d" pyproject.toml
'';
pythonImportsCheck = [ "scramp" ];
disabledTests = [ "test_readme" ];
meta = {
description = "Implementation of the SCRAM authentication protocol";
homepage = "https://github.com/tlocke/scramp";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|