pythonPackages.django_classytags: 0.9.0 -> 1.0.0

This commit is contained in:
Nikolay Korotkiy 2020-02-02 17:41:24 +03:00 committed by Jon
parent e9ba4b94fb
commit 02a85d844f

View File

@ -2,25 +2,26 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, django , django
, six
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "django-classy-tags"; pname = "django-classy-tags";
version = "0.9.0"; version = "1.0.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0axzsigvmb17ha5mnr3xf6c851kwinjpkxksxwprwjakh1m59d1q"; sha256 = "1cayqddvxd5prhybqi77lif2z4j7mmfmxgc61pq9i82q5gy2asmd";
}; };
propagatedBuildInputs = [ django ]; propagatedBuildInputs = [ django six ];
# pypi version doesn't include runtest.py, needed to run tests # pypi version doesn't include runtest.py, needed to run tests
doCheck = false; doCheck = false;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Class based template tags for Django"; description = "Class based template tags for Django";
homepage = https://github.com/ojii/django-classy-tags; homepage = "https://github.com/divio/django-classy-tags";
license = licenses.bsd3; license = licenses.bsd3;
}; };