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

This commit is contained in:
Dennis
2023-10-23 00:19:01 +09:00
committed by GitHub
parent decfbf4791
commit 0353ba0ac8
2 changed files with 40 additions and 0 deletions
@@ -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 ];
};
}
+2
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 { };