Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / mscerts / default.nix
blobbdf4fd1fd4540d841d2556d397a899726c061641
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "mscerts";
9   version = "2023.8.23";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchFromGitHub {
15     owner = "ralphje";
16     repo = "mscerts";
17     rev = "refs/tags/${version}";
18     hash = "sha256-Oc02yi7N2W/DekmTxdYllN6UBD1phbVdSBN2dcPo1oI=";
19   };
21   # extras_require contains signify -> circular dependency
23   # Module has no tests
24   doCheck = false;
26   pythonImportsCheck = [
27     "mscerts"
28   ];
30   meta = with lib; {
31     description = "Makes the Microsoft Trusted Root Program's Certificate Trust Lists available in Python";
32     homepage = "https://github.com/ralphje/mscerts";
33     license = with licenses; [ mpl20 ];
34     maintainers = with maintainers; [ fab ];
35   };