blob: e5db5328abd6617dbc88070fb9372d0b7d5f14d5 (
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
|
{
buildPythonPackage,
fetchFromGitHub,
hatchling,
lib,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "wassima";
version = "2.0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "jawah";
repo = "wassima";
tag = version;
hash = "sha256-6tNmJwnOtl+luN1qgu93LXEfBZ0oieEpLa9Q9N6Gsag=";
};
build-system = [ hatchling ];
pythonImportsCheck = [ "wassima" ];
nativeCheckInputs = [
pytestCheckHook
];
# tests connect to the internet
doCheck = false;
meta = {
changelog = "https://github.com/jawah/wassima/blob/${src.tag}/CHANGELOG.md";
description = "Access your OS root certificates with utmost ease";
homepage = "https://github.com/jawah/wassima";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|