17
0
Files
python-pykeepass/python-pykeepass.spec
Atri Bhattacharya 449b1afa30 Accepting request 1164098 from home:rrahl0:branches:security
- Update to 4.0.7:
  * PyKeePass has decrypt kwarg for accessing header info
  * added Entry.index and Entry.move for moving entries
  * added Entry.autotype_window setter
  * allow filename/keyfile to be file-like objects
  * drop dateutil dependency
  * switch to pyproject.toml
- add fix-test.patch for fixing an issue with
  missing pykeepass.kdbx_parsing

OBS-URL: https://build.opensuse.org/request/show/1164098
OBS-URL: https://build.opensuse.org/package/show/security/python-pykeepass?expand=0&rev=26
2024-04-02 12:45:12 +00:00

75 lines
2.6 KiB
RPMSpec

#
# spec file for package python-pykeepass
#
# Copyright (c) 2024 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/
#
Name: python-pykeepass
Version: 4.0.7
Release: 0
Summary: Low-level library to interact with keepass databases
License: GPL-3.0-only
URL: https://github.com/libkeepass/pykeepass
Source: https://github.com/libkeepass/pykeepass/archive/refs/tags/v%{version}.tar.gz#/pykeepass-%{version}.tar.gz
#Patch-Upstream: One test asks for module pykeepass.kdbx_parsing, which doesn't exist yet
Patch0: https://github.com/libkeepass/pykeepass/commit/4c8a1cc358e6ba24d9cb598963229f4999d6c70b.patch#/fix-upstream-test-case.patch
BuildRequires: %{python_module devel}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pyotp}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-argon2-cffi >= 20.1.0
Requires: python-construct >= 2.10.54
Requires: python-lxml >= 4.6.1
Requires: python-pycryptodomex >= 3.10.1
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module argon2-cffi >= 20.1.0}
BuildRequires: %{python_module construct >= 2.10.54}
BuildRequires: %{python_module lxml >= 4.6.1}
BuildRequires: %{python_module pycryptodomex >= 3.10.1}
BuildRequires: %{python_module pytest}
# /SECTION
%python_subpackages
%description
This library allows you to write entries to a KeePass database
%prep
%autosetup -p1 -n pykeepass-%{version}
sed -i '1{/^#!.*env python/d}' pykeepass/{pykeepass,deprecated,kdbx_parsing/kdbx*}.py
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_expand export PYTHONPATH=%{buildroot}%{python3_sitelib}
export PYTHONDONTWRITEBYTECODE=1
%python_exec tests/tests.py
%files %{python_files}
%license LICENSE
%doc README.rst
%{python_sitelib}/pykeepass/
%{python_sitelib}/pykeepass-%{version}.dist-info/
%changelog