diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-09-20 22:44:39 -0400 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2017-10-02 13:51:18 -0400 |
| commit | f18080976164308cc9a37f9349ecc3b0fce72ff5 (patch) | |
| tree | a4bee76834eb60052358ecb65cbe9460f686116a /secretstorage/meta.yaml | |
| parent | 846e6c7ff7fbdf60834f0a27324ecb663ba1fdad (diff) | |
| download | astroconda-contrib-f18080976164308cc9a37f9349ecc3b0fce72ff5.tar.gz | |
Initial commit; secretstorage (#56)
* Initial commit; secretstorage
* Skip if host is not linux
* Remove commentary track
Diffstat (limited to 'secretstorage/meta.yaml')
| -rw-r--r-- | secretstorage/meta.yaml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/secretstorage/meta.yaml b/secretstorage/meta.yaml new file mode 100644 index 0000000..afa3f50 --- /dev/null +++ b/secretstorage/meta.yaml @@ -0,0 +1,38 @@ +{% set name = 'secretstorage' %} +{% set version = '2.3.1' %} +{% set number = '0' %} + +about: + home: https://github.com/mitya57/{{ name }} + license: BSD License + summary: 'Python bindings to FreeDesktop.org Secret Service API' + license_family: BSD + +package: + name: {{ name }} + version: {{ version }} + +build: + skip: true [not linux] + number: {{ number }} + +source: + git_tag: {{ version }} + git_url: https://github.com/mitya57/{{ name }}.git + +requirements: + build: + - python + - dbus-python + - setuptools + - cryptography + + run: + - python + - dbus-python + - cryptography + +test: + imports: + - secretstorage + |
