gnu: Add python-django-netfields.

* gnu/packages/django.scm (python-django-netfields): New public variable.
This commit is contained in:
Marius Bakke 2020-09-01 15:23:53 +02:00
parent c96bc57a1e
commit cc62ab592f
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -1230,3 +1230,27 @@ (define-public python-django-logging-json
and exception details in a JSON document. It can also send logs directly
to ElasticSearch.")
(license license:bsd-2)))
(define-public python-django-netfields
(package
(name "python-django-netfields")
(version "1.2.2")
(source (origin
(method url-fetch)
(uri (pypi-uri "django-netfields" version))
(sha256
(base32
"1c47azr5am0q8g45x0fbn0cay7vyrack6n7k6siliw1j2p0gzi7s"))))
(build-system python-build-system)
(arguments '(#:tests? #f)) ;XXX: Requires a running PostgreSQL server
(propagated-inputs
`(("python-django" ,python-django)
("python-ipaddress" ,python-ipaddress)
("python-netaddr" ,python-netaddr)
("python-six" ,python-six)))
(home-page "https://github.com/jimfunk/django-postgresql-netfields")
(synopsis "PostgreSQL netfields implementation for Django")
(description
"This package provides mappings for the PostgreSQL @code{INET} and
@code{CIDR} fields for use in Django projects.")
(license license:bsd-3)))