-
Notifications
You must be signed in to change notification settings - Fork 7
/
python-pickle.cabal
71 lines (63 loc) · 1.89 KB
/
python-pickle.cabal
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
cabal-version: 3.4
name: python-pickle
version: 0.3.0
synopsis: Serialization/deserialization using Python Pickle format.
description:
This package implements serialization and deserialization of Python objects
using the Pickle format.
category: Development
license: BSD-3-Clause
license-file: LICENSE
author: Vo Minh Thu, Timothy Copeland
maintainer: [email protected]
build-type: Simple
homepage: https://github.com/noteed/python-pickle
bug-reports: https://github.com/noteed/python-pickle/issues
tested-with:
GHC == 9.8.1
GHC == 9.6.4
GHC == 9.4.4
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
GHC == 8.6.5
source-repository head
type: git
location: https://github.com/noteed/python-pickle
library
build-depends: attoparsec >=0.14 && < 0.15,
base >=4.12 && < 4.20,
bytestring >=0.10 && < 0.13,
cereal >=0.5 && < 0.6,
containers >=0.6 && < 0.7,
mtl >=2.2 && < 2.4,
text >= 1.2 && < 2.2
exposed-modules: Language.Python.Pickle
ghc-options: -Wall
default-language: Haskell2010
executable pickle
main-is: pickle.hs
hs-source-dirs: bin/
build-depends: base,
bytestring,
cmdargs >= 0.10 && < 0.11,
python-pickle
ghc-options: -Wall
default-language: Haskell2010
test-suite pickled-values
hs-source-dirs: tests
main-is: PickledValues.hs
type: exitcode-stdio-1.0
build-depends:
base,
bytestring,
containers,
directory,
HUnit,
python-pickle,
process,
test-framework,
test-framework-hunit
ghc-options: -Wall
default-language: Haskell2010