python313Packages.django-pwa: update build-system

Changed files
+8 -4
pkgs
development
python-modules
django-pwa
+8 -4
pkgs/development/python-modules/django-pwa/default.nix
···
buildPythonPackage,
django,
fetchFromGitHub,
+
hatch-vcs,
+
hatchling,
python,
pythonOlder,
-
setuptools,
}:
buildPythonPackage rec {
···
hash = "sha256-EAjDK3rkjoPw8jyVVZdhMNHmTqr0/ERiMwGMxmVbsls=";
};
-
nativeBuildInputs = [ setuptools ];
+
build-system = [
+
hatch-vcs
+
hatchling
+
];
-
propagatedBuildInputs = [ django ];
+
dependencies = [ django ];
pythonImportsCheck = [ "pwa" ];
···
'';
meta = with lib; {
-
description = "Django app to include a manifest.json and Service Worker instance to enable progressive web app behavoir";
+
description = "Django app to include a manifest.json and Service Worker instance to enable progressive web app behavior";
homepage = "https://github.com/silviolleite/django-pwa";
changelog = "https://github.com/silviolleite/django-pwa/releases/tag/${src.tag}";
license = licenses.mit;