Merge pull request #305942 from fabaff/model-bakery-bump

python312Packages.model-bakery: 1.17.0 -> 1.18.0
This commit is contained in:
Fabian Affolter 2024-04-24 08:23:33 +02:00 committed by GitHub
commit 9a5f1e04c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 20 deletions

View File

@ -1,17 +1,18 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, django
, pytestCheckHook
, pythonOlder
, pytest-django
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
django,
pytestCheckHook,
pythonOlder,
pytest-django,
}:
buildPythonPackage rec {
pname = "model-bakery";
version = "1.17.0";
format = "pyproject";
version = "1.18.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -19,25 +20,19 @@ buildPythonPackage rec {
owner = "model-bakers";
repo = "model_bakery";
rev = "refs/tags/${version}";
hash = "sha256-o3BI2lMwctR9tiGmY07dAOQUfv9K4rWkc/xI6uHnVfs=";
hash = "sha256-mf6NV7r/9kDCRlszx/QGtfEsC1O/SATd6+EX+w7ptEQ=";
};
nativeBuildInputs = [
hatchling
];
build-system = [ hatchling ];
propagatedBuildInputs = [
django
];
dependencies = [ django ];
nativeCheckInputs = [
pytest-django
pytestCheckHook
];
pythonImportsCheck = [
"model_bakery"
];
pythonImportsCheck = [ "model_bakery" ];
meta = with lib; {
description = "Object factory for Django";