Unverified Commit 418b5d9e authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

python312Packages.asn1crypto: 1.5.1 -> 1.5.1-unstable-2023.11.03

while keeping python311Packages.asn1crypto on 1.5.1.  See PR #288221
parent 024149d7
Loading
Loading
Loading
Loading
+18 −3
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, python
, fetchFromGitHub

# build system
@@ -9,17 +10,31 @@
, pytestCheckHook
}:

# Switch version based on python version, as the situation isn't easy:
#   https://github.com/wbond/asn1crypto/issues/269
#   https://github.com/MatthiasValvekens/certomancer/issues/12
with (
  if lib.versionOlder python.version "3.12" then rec {
    version = "1.5.1";
    rev = version;
    hash = "sha256-M8vASxhaJPgkiTrAckxz7gk/QHkrFlNz7fFbnLEBT+M=";
  } else {
    version = "1.5.1-unstable-2023-11-03";
    rev = "b763a757bb2bef2ab63620611ddd8006d5e9e4a2";
    hash = "sha256-11WajEDtisiJsKQjZMSd5sDog3DuuBzf1PcgSY+uuXY=";
  }
);

buildPythonPackage rec {
  pname = "asn1crypto";
  version = "1.5.1";
  pyproject = true;
  inherit version;

  # Pulling from Github to run tests
  src = fetchFromGitHub {
    owner = "wbond";
    repo = "asn1crypto";
    rev = version;
    hash = "sha256-M8vASxhaJPgkiTrAckxz7gk/QHkrFlNz7fFbnLEBT+M=";
    inherit rev hash;
  };

  nativeBuildInputs = [