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 ecade5a commit e4c7910
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pkgs/development/python-modules/signify/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@

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
Expand All @@ -44,11 +44,11 @@ buildPythonPackage rec {

nativeCheckInputs = [ pytestCheckHook ];

meta = with lib; {
meta = {
changelog = "https://github.com/ralphje/signify/blob/${src.rev}/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 e4c7910

Please sign in to comment.