Tomáš Chvátal 2020-06-08 07:21:47 +00:00 committed by Git OBS Bridge
commit e9da56a53b
5 changed files with 110 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
graphene-3.0.0b2.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:86779f7a0c1a7a7d3a0f1d0a20f81767589bc653fb885acb2b3deacd3e2c6eca
size 107999

9
python-graphene.changes Normal file
View File

@ -0,0 +1,9 @@
-------------------------------------------------------------------
Sat Jun 6 07:08:31 UTC 2020 - John Vandenberg <jayvdb@gmail.com>
- Update to 3.0.0b2
-------------------------------------------------------------------
Wed Dec 4 13:23:59 UTC 2019 - Andreas Hasenkopf <ahasenkopf@suse.com>
- New package for v2.1.8

74
python-graphene.spec Normal file
View File

@ -0,0 +1,74 @@
#
# spec file for package python-graphene
#
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-graphene
Version: 3.0.0b2
Release: 0
Summary: GraphQL Framework for Python
License: MIT
Group: Development/Languages/Python
URL: https://github.com/graphql-python/graphene
Source: https://github.com/graphql-python/graphene/archive/v%{version}.tar.gz#/graphene-%{version}.tar.gz
BuildRequires: %{python_module Unidecode}
BuildRequires: %{python_module aniso8601}
BuildRequires: %{python_module graphql-core}
BuildRequires: %{python_module graphql-relay}
BuildRequires: %{python_module mock}
BuildRequires: %{python_module promise}
BuildRequires: %{python_module pytest-asyncio}
BuildRequires: %{python_module pytest-benchmark}
BuildRequires: %{python_module pytest-mock}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module pytz}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module six}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Unidecode
Requires: python-aniso8601
Requires: python-graphql-core
Requires: python-graphql-relay
Requires: python-six
BuildArch: noarch
%python_subpackages
%description
Graphene is a Python library for building GraphQL schemas/types fast and easily.
%prep
%setup -q -n graphene-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# The example depend on snapshottest, which is a bit messy to package as of v0.5.1
# https://github.com/syrusakbary/snapshottest/pull/114
%pytest -k 'not examples'
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/*
%changelog