Skip to content

Commit

Permalink
python312Packages.signify: 0.6.0 -> 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bot-wxt1221 committed Dec 21, 2024
1 parent 7fa8c3e commit 777436f
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions pkgs/development/python-modules/signify/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
fetchFromGitHub,
mscerts,
oscrypto,
pyasn1,
pyasn1-modules,
pytestCheckHook,
pythonOlder,
setuptools,
Expand All @@ -16,39 +14,37 @@

buildPythonPackage rec {
pname = "signify";
version = "0.6.0";
version = "0.7.1";
pyproject = true;

disabled = pythonOlder "3.8";

src = fetchFromGitHub {
owner = "ralphje";
repo = "signify";
rev = "refs/tags/v${version}";
hash = "sha256-29SyzqtZ1cI+1xrSPLFr63vwB5st/9i5b3FYtJn6eok=";
tag = "v${version}";
hash = "sha256-yQCb7vNbz+ZGftqlEUUh6UUuxwv5+zhvBJmUn1eNgqM=";
};

nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];

propagatedBuildInputs = [
dependencies = [
asn1crypto
certvalidator
mscerts
oscrypto
pyasn1
pyasn1-modules
typing-extensions
];

pythonImportsCheck = [ "signify" ];

nativeCheckInputs = [ pytestCheckHook ];

meta = with lib; {
changelog = "https://github.com/ralphje/signify/blob/${src.rev}/docs/changelog.rst";
meta = {
changelog = "https://github.com/ralphje/signify/blob/refs/tags/${src.tag}/docs/changelog.rst";
description = "library that verifies PE Authenticode-signed binaries";
homepage = "https://github.com/ralphje/signify";
license = licenses.mit;
maintainers = with maintainers; [ baloo ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ baloo ];
};
}

0 comments on commit 777436f

Please sign in to comment.