python3.pkgs.django-shortuuidfield: init at 0.1.3 (#225789)

This commit is contained in:
Dennis 2023-10-22 17:19:01 +02:00 committed by GitHub
parent decfbf4791
commit 0353ba0ac8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, django
, fetchPypi
, shortuuid
, six
}:
buildPythonPackage rec {
pname = "django-shortuuidfield";
version = "0.1.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-opLA/lU4q+lHsTHiuRTt2axEr8xqQOrscUSOYjGj7wA=";
};
propagatedBuildInputs = [
django
shortuuid
six
];
# no tests
doCheck = false;
pythonImportsCheck = [
"shortuuidfield"
];
meta = with lib; {
description = "Short UUIDField for Django. Good for use in urls & file names";
homepage = "https://github.com/benrobster/django-shortuuidfield";
license = licenses.bsd3;
maintainers = with maintainers; [ derdennisop ];
};
}

View file

@ -3057,6 +3057,8 @@ self: super: with self; {
django-scim2 = callPackage ../development/python-modules/django-scim2 { };
django-shortuuidfield = callPackage ../development/python-modules/django-shortuuidfield { };
django-scopes = callPackage ../development/python-modules/django-scopes { };
djangoql = callPackage ../development/python-modules/djangoql { };