anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / mscerts / default.nix
blobb607444fc27f81af8e6dc3341febdf08bc077739
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "mscerts";
11   version = "2024.5.29";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "ralphje";
18     repo = "mscerts";
19     rev = "refs/tags/${version}";
20     hash = "sha256-1k0k5BSEyiJ1Brx7P+sgUQI63k1eT59edghnPVuCuZE=";
21   };
23   build-system = [ setuptools ];
25   # extras_require contains signify -> circular dependency
27   # Module has no tests
28   doCheck = false;
30   pythonImportsCheck = [ "mscerts" ];
32   meta = with lib; {
33     description = "Makes the Microsoft Trusted Root Program's Certificate Trust Lists available in Python";
34     homepage = "https://github.com/ralphje/mscerts";
35     license = with licenses; [ mpl20 ];
36     maintainers = with maintainers; [ fab ];
37   };