-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathguix.scm
89 lines (82 loc) · 2.38 KB
/
guix.scm
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
(define-module (guix)
#:use-module (guix packages)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system python)
#:use-module (guix build-system gnu)
#:use-module (guix git-download)
#:use-module (guix download)
#:use-module (guix search-paths)
#:use-module (gnu packages)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages autotools)
#:use-module (gnu packages certs)
#:use-module (gnu packages check)
#:use-module (gnu packages databases)
#:use-module (gnu packages gnupg)
#:use-module (gnu packages wget)
#:use-module (gnu packages python)
#:use-module (gnu packages python-build)
#:use-module (gnu packages python-crypto)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages libffi)
#:use-module (gnu packages license))
(define-public python-plyvel
(package
(name "python-plyvel")
(version "1.5.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "plyvel" version))
(sha256
(base32 "0ar0z53nhi9q3kvpmpkk2pzb46lmmwn79a02sb9vq2k9645qx4fd"))))
(build-system python-build-system)
(inputs
(list leveldb))
(native-inputs
(list pkg-config python-cython python-pytest))
(home-page "https://github.com/wbolster/plyvel")
(synopsis "Python bindings for 0MQ")
(description
"Plyvel is a fast and feature-rich Python interface to LevelDB.")
(license license:bsd-4)))
(define-public particl-coldstakepool
(package
(name "particl-coldstakepool")
(version "0.24.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/tecnovert/particl-coldstakepool")
(commit "aeaef8aef0ae4f2d66c255473eca9fd2275ce1ff")))
(sha256
(base32
"0zykanvi0vi1360g66amdyhphqb40a4qx61f49vpm4f8g30xbaam"))
(file-name (git-file-name name version))))
(build-system python-build-system)
(native-search-paths (list $SSL_CERT_DIR $SSL_CERT_FILE))
(arguments
'(#:tests? #f ; TODO: Add coin binaries
))
(propagated-inputs
(list
gnupg
wget
leveldb
nss-certs
python-pytest
python-pyzmq
python-gnupg
python-plyvel
))
(native-inputs
(list
python-setuptools
python-wheel
python-pylint
python-pyflakes
))
(synopsis "Particl Cold-Staking Pool - Proof of concept")
(description #f)
(home-page "https://github.com/tecnovert/particl-coldstakepool")
(license license:bsd-3)))