Unverified Commit 0514a1b8 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python312Packages.asn1: refactor

parent 8a6eba1e
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -5,12 +5,13 @@
  fetchFromGitHub,
  future,
  pytestCheckHook,
  setuptools,
}:

buildPythonPackage rec {
  pname = "asn1";
  version = "2.7.1";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.7";

@@ -21,7 +22,9 @@ buildPythonPackage rec {
    hash = "sha256-xdkSJIe7qmz0Zu5IZ3Rl/h4v2j3YFrm1gz7lsNQ0ORs=";
  };

  propagatedBuildInputs = [ future ];
  build-system = [ setuptools ];

  dependencies = [ future ];

  nativeCheckInputs = [ pytestCheckHook ];