forked from pool/python-mimesis
		
	Accepting request 700463 from home:TheBlackCat:branches:devel:languages:python:jupyter
Fake data generator OBS-URL: https://build.opensuse.org/request/show/700463 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-mimesis?expand=0&rev=1
This commit is contained in:
		
							
								
								
									
										23
									
								
								.gitattributes
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								.gitattributes
									
									
									
									
										vendored
									
									
										Normal 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
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | ||||
| .osc | ||||
							
								
								
									
										3
									
								
								mimesis-3.1.0.tar.gz
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								mimesis-3.1.0.tar.gz
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,3 @@ | ||||
| version https://git-lfs.github.com/spec/v1 | ||||
| oid sha256:153d9e7e7b353ae7a871ee84223e0596e5c2b0c70fb7e9088f71c06d4d04120c | ||||
| size 2822145 | ||||
							
								
								
									
										4
									
								
								python-mimesis.changes
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								python-mimesis.changes
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| ------------------------------------------------------------------- | ||||
| Thu May  2 19:01:49 UTC 2019 - Todd R <toddrme2178@gmail.com> | ||||
|  | ||||
| - Initial version | ||||
							
								
								
									
										70
									
								
								python-mimesis.spec
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										70
									
								
								python-mimesis.spec
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,70 @@ | ||||
| # | ||||
| # spec file for package python-mimesis | ||||
| # | ||||
| # Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. | ||||
| # | ||||
| # 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 http://bugs.opensuse.org/ | ||||
|  | ||||
|  | ||||
| %{?!python_module:%define python_module() python-%{**} python3-%{**}} | ||||
| %define         skip_python2 1 | ||||
| Name:           python-mimesis | ||||
| Version:        3.1.0 | ||||
| Release:        0 | ||||
| License:        MIT | ||||
| Summary:        Fake data generator | ||||
| Url:            https://github.com/lk-geimfari/mimesis | ||||
| Group:          Development/Languages/Python | ||||
| Source:         https://github.com/lk-geimfari/mimesis/archive/3.1.0.tar.gz#/mimesis-%{version}.tar.gz | ||||
| BuildRequires:  %{python_module setuptools} | ||||
| BuildRequires:  fdupes | ||||
| BuildRequires:  python-rpm-macros | ||||
| # SECTION test requirements | ||||
| BuildRequires:  %{python_module pytest} | ||||
| BuildRequires:  %{python_module pytest-flake8} | ||||
| BuildRequires:  %{python_module pytest-isort} | ||||
| # /SECTION | ||||
| Recommends:     python-pytz | ||||
| BuildArch:      noarch | ||||
|  | ||||
| %python_subpackages | ||||
|  | ||||
| %description | ||||
| Mimesis is a package for Python, which helps generate big volumes of | ||||
| fake data for a variety of purposes in a variety of languages. The | ||||
| fake data could be used to populate a testing database, create JSON | ||||
| and XML files, anonymize data taken from production and etc. | ||||
|  | ||||
| %prep | ||||
| %setup -q -n mimesis-%{version} | ||||
| chmod a-x LICENSE README.rst | ||||
| chmod a-x mimesis/data/*/*.json | ||||
|  | ||||
| %build | ||||
| %python_build | ||||
|  | ||||
| %install | ||||
| %python_install | ||||
| %python_expand %fdupes %{buildroot}%{$python_sitelib} | ||||
| rm %{buildroot}%{_prefix}/LICENSE | ||||
|  | ||||
| # Tests require a network connection | ||||
| # %%check | ||||
| # %%python_expand pytest-%%{$python_bin_suffix} | ||||
|  | ||||
| %files %{python_files} | ||||
| %doc README.rst | ||||
| %license LICENSE | ||||
| %{python_sitelib}/mimesis-%{version}-py*.egg-info | ||||
| %{python_sitelib}/mimesis/ | ||||
|  | ||||
| %changelog | ||||
		Reference in New Issue
	
	Block a user