Loading pkgs/development/python-modules/mscerts/default.nix 0 → 100644 +36 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , pythonOlder }: buildPythonPackage rec { pname = "mscerts"; version = "2023.4.26"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "ralphje"; repo = "mscerts"; rev = "refs/tags/${version}"; hash = "sha256-7aiSFMZsUtuSqXQ1jJ3OhyBhzAH70ZX5+NqOtrpRmmw="; }; # extras_require contains signify -> circular dependency # Module has no tests doCheck = false; pythonImportsCheck = [ "mscerts" ]; meta = with lib; { description = "Makes the Microsoft Trusted Root Program's Certificate Trust Lists available in Python"; homepage = "https://github.com/ralphje/mscerts"; license = with licenses; [ mpl20 ]; maintainers = with maintainers; [ fab ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6397,6 +6397,8 @@ self: super: with self; { msal-extensions = callPackage ../development/python-modules/msal-extensions { }; mscerts = callPackage ../development/python-modules/mscerts { }; msgpack = callPackage ../development/python-modules/msgpack { }; msgpack-numpy = callPackage ../development/python-modules/msgpack-numpy { }; Loading Loading
pkgs/development/python-modules/mscerts/default.nix 0 → 100644 +36 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , pythonOlder }: buildPythonPackage rec { pname = "mscerts"; version = "2023.4.26"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "ralphje"; repo = "mscerts"; rev = "refs/tags/${version}"; hash = "sha256-7aiSFMZsUtuSqXQ1jJ3OhyBhzAH70ZX5+NqOtrpRmmw="; }; # extras_require contains signify -> circular dependency # Module has no tests doCheck = false; pythonImportsCheck = [ "mscerts" ]; meta = with lib; { description = "Makes the Microsoft Trusted Root Program's Certificate Trust Lists available in Python"; homepage = "https://github.com/ralphje/mscerts"; license = with licenses; [ mpl20 ]; maintainers = with maintainers; [ fab ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6397,6 +6397,8 @@ self: super: with self; { msal-extensions = callPackage ../development/python-modules/msal-extensions { }; mscerts = callPackage ../development/python-modules/mscerts { }; msgpack = callPackage ../development/python-modules/msgpack { }; msgpack-numpy = callPackage ../development/python-modules/msgpack-numpy { }; Loading