File python-django-encrypt.spec of Package python-django-encrypt
# norootforbuild
Name: python-django-encrypt
Version: 0.1
Release: 1
Summary: A quick way to encrypt python objects and store
License: BSD License
Group: Development/Libraries/Python
Source: django-encrypt-%{version}.tar.gz
URL: http://pypi.python.org/pypi/django-encrypt
BuildRequires: python-devel, python-setuptools
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: python-django
%{py_requires}
%description
Interface for storing arbitray python objects. Uses a user's
password as the cypher to store an object in TextField.
Object must be able to be pickeled. Authentication is done by
using django authenitication module.
Author:
--------
Joshua Williams <jowillia@gmail.com>
%prep
%setup -q -n django-encrypt-%{version}
%build
%{__python} setup.py build
%install
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
%files -f INSTALLED_FILES
%defattr(-,root,root)