aboutsummaryrefslogtreecommitdiff
path: root/guix.scm
blob: 0c78fc1509ec9b26326b93403e814f06a86d6db2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
(use-modules (guix packages)
	     (guix git-download)
	     (gnu packages check)
	     (gnu packages databases)
	     (gnu packages python-xyz)
	     (gnu packages python-web)
	     (guix build-system python)
	     (gnu packages python-check)
	     ((guix licenses) #:prefix license:))

(let ((commit "4808ae57ac83ef00e679c94fe6844c72f18735b9")
      (revision "2"))
  (package
    (name "genenetwork-qc")
    (version (git-version "0.0.1" revision commit))
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
	     (url "https://git.genenetwork.org/fredmanglis/gnqc_py.git")
	     (commit commit)))
       (sha256
	(base32
	 "14lbdbkqa5aiwldafirgqsfcydbqqbhz30vrf80afxj9sqxcscd9"))))
    (build-system python-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
	 (replace 'check
	   (lambda* (#:key tests? #:allow-other-keys)
	     (when tests?
	       (invoke "pytest")))))))
    (inputs
     (list python-mypy
	   python-pylint
	   python-pytest
	   python-hypothesis))
    (propagated-inputs
     (list redis))
    (synopsis "GeneNetwork Quality Control Application")
    (description
     "GeneNetwork qc is a quality control application for the data files that
 eventually are used to add to the data in the GeneNetwork project.")
    (home-page "https://git.genenetwork.org/fredmanglis/gnqc_py")
    (license license:agpl3+)))