|
19 | 19 | ((gnu packages python) #:select (python-minimal))
|
20 | 20 | ((gnu packages python-build) #:select (python-tomli))
|
21 | 21 | ((gnu packages python-crypto) #:select (python-asn1crypto))
|
22 |
| - ((gnu packages python-xyz) #:select (python-altgraph)) |
23 | 22 | ((gnu packages tls) #:select (openssl))
|
24 | 23 | ((gnu packages version-control) #:select (git-minimal))
|
25 | 24 | (guix build-system cmake)
|
@@ -373,54 +372,6 @@ certificates or paths. Supports various options, including: validation at a
|
373 | 372 | specific moment in time, whitelisting and revocation checks.")
|
374 | 373 | (license license:expat))))
|
375 | 374 |
|
376 |
| -(define-public python-macholib |
377 |
| - (package |
378 |
| - (name "python-macholib") |
379 |
| - (version "1.14") |
380 |
| - (source |
381 |
| - (origin |
382 |
| - (method git-fetch) |
383 |
| - (uri (git-reference |
384 |
| - (url "https://github.com/ronaldoussoren/macholib") |
385 |
| - (commit (string-append "v" version)))) |
386 |
| - (file-name (git-file-name name version)) |
387 |
| - (sha256 |
388 |
| - (base32 |
389 |
| - "0aislnnfsza9wl4f0vp45ivzlc0pzhp9d4r08700slrypn5flg42")))) |
390 |
| - (build-system python-build-system) |
391 |
| - (propagated-inputs |
392 |
| - `(("python-altgraph" ,python-altgraph))) |
393 |
| - (arguments |
394 |
| - '(#:phases |
395 |
| - (modify-phases %standard-phases |
396 |
| - (add-after 'unpack 'disable-broken-tests |
397 |
| - (lambda _ |
398 |
| - ;; This test is broken as there is no keyboard interrupt. |
399 |
| - (substitute* "macholib_tests/test_command_line.py" |
400 |
| - (("^(.*)class TestCmdLine" line indent) |
401 |
| - (string-append indent |
402 |
| - "@unittest.skip(\"Disabled by Guix\")\n" |
403 |
| - line))) |
404 |
| - (substitute* "macholib_tests/test_dyld.py" |
405 |
| - (("^(.*)def test_\\S+_find" line indent) |
406 |
| - (string-append indent |
407 |
| - "@unittest.skip(\"Disabled by Guix\")\n" |
408 |
| - line)) |
409 |
| - (("^(.*)def testBasic" line indent) |
410 |
| - (string-append indent |
411 |
| - "@unittest.skip(\"Disabled by Guix\")\n" |
412 |
| - line)) |
413 |
| - ) |
414 |
| - #t))))) |
415 |
| - (home-page "https://github.com/ronaldoussoren/macholib") |
416 |
| - (synopsis "Python library for analyzing and editing Mach-O headers") |
417 |
| - (description "macholib is a Macho-O header analyzer and editor. It's |
418 |
| -typically used as a dependency analysis tool, and also to rewrite dylib |
419 |
| -references in Mach-O headers to be @executable_path relative. Though this tool |
420 |
| -targets a platform specific file format, it is pure python code that is platform |
421 |
| -and endian independent.") |
422 |
| - (license license:expat))) |
423 |
| - |
424 | 375 | (define-public python-signapple
|
425 | 376 | (let ((commit "62155712e7417aba07565c9780a80e452823ae6a"))
|
426 | 377 | (package
|
|
0 commit comments