- Activate test suite on Python 3 using GitHub archive. Currently failing on Python 2 - Add missing runtime dependencies - Add %license - Update to v3.0.3 * Python 3.7 support * Autotype support * Fix "object has no attribute" issue in save_history * Fix datetime comparison when there is no tzinfo and autotype sequence * Added new Attachment object (see README.rst for usage) * Moved the xpath strings into xpath.py * Added exceptions.py * Fix entry.parentgroup doesn't work for history entries * Move first and history into _xpath * Use UUID instead of (name, title, password, ...) when comparing objects * Notes is a reserved key OBS-URL: https://build.opensuse.org/request/show/686301 OBS-URL: https://build.opensuse.org/package/show/security/python-pykeepass?expand=0&rev=4
77 lines
2.4 KiB
RPMSpec
77 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package python-pykeepass
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-pykeepass
|
|
Version: 3.0.3
|
|
Release: 0
|
|
Summary: Low-level library to interact with keepass databases
|
|
License: GPL-3.0-only
|
|
Group: Development/Languages/Python
|
|
Url: https://github.com/pschmitt/pykeepass
|
|
Source: https://github.com/pschmitt/pykeepass/archive/%{version}.tar.gz#/pykeepass-%{version}.tar.gz
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: python-rpm-macros
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module argon2-cffi}
|
|
BuildRequires: %{python_module construct}
|
|
BuildRequires: %{python_module future}
|
|
BuildRequires: %{python_module lxml}
|
|
BuildRequires: %{python_module pycryptodome}
|
|
BuildRequires: %{python_module python-dateutil}
|
|
# /SECTION
|
|
BuildRequires: fdupes
|
|
Requires: python-argon2_cffi
|
|
Requires: python-construct
|
|
Requires: python-future
|
|
Requires: python-lxml
|
|
Requires: python-pycryptodome
|
|
Requires: python-python-dateutil
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
%description
|
|
This library allows you to write entries to a KeePass database
|
|
|
|
|
|
%prep
|
|
%setup -q -n pykeepass-%{version}
|
|
sed -i '1{/^#!.*env python/d}' pykeepass/pykeepass.py pykeepass/kdbx_parsing/kdbx*.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand rm -r %{buildroot}%{$python_sitelib}/tests
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
export PYTHONPATH=${PWD}
|
|
# python2 seg faults after 65 successful tests
|
|
python3 setup.py test
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc README.rst
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|