My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/django_tagging/default.nix

21 lines
498 B

{ buildPythonPackage, fetchPypi, django }:
buildPythonPackage rec {
pname = "django-tagging";
version = "0.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "28d68fa4831705e51ad7d1e845ed6dd9e354f9b6f8a5f63b655a430646ef4e8d";
};
# error: invalid command 'test'
doCheck = false;
propagatedBuildInputs = [ django ];
meta = {
description = "A generic tagging application for Django projects";
homepage = "https://github.com/Fantomas42/django-tagging";
};
}