diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-12-09 16:54:34 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-12-13 00:07:22 +0100 |
commit | 6e9518e201396602e92f89712f15c90d274260fa (patch) | |
tree | da17e6d40a7711690dca1696dc85f37a34e62310 | |
parent | 5167881a6087d3e7fb14380a6700263e954caf54 (diff) | |
download | guix-6e9518e201396602e92f89712f15c90d274260fa.tar.gz |
gnu: python-hicmatrix: Update to 16.
* gnu/packages/bioinformatics.scm (python-hicmatrix): Update to 16. [build-system]: Use pyproject-build-system. [arguments]: Shuffle the quote.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 52abe152ee..82801e7eeb 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -13373,7 +13373,7 @@ includes operations like compartment, insulation or peak calling.") (define-public python-hicmatrix (package (name "python-hicmatrix") - (version "15") + (version "16") (source (origin ;;Pypi sources do not contain any test @@ -13384,11 +13384,12 @@ includes operations like compartment, insulation or peak calling.") (file-name (git-file-name name version)) (sha256 (base32 - "1dshjxgb16sdfg9k1bhw2yhyngac04k4ca7aqy8g3i3pprr068r5")))) - (build-system python-build-system) + "00b9l62j4knrsdp7l3pawi9cqcsl09diycbhmmnar850bzssmq4f")))) + (build-system pyproject-build-system) (arguments - `(#:phases - (modify-phases %standard-phases + (list + #:phases + '(modify-phases %standard-phases (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? |