mob next [ci-skip] [ci skip] [skip ci]

lastFile:pkgs/python/py-moneyed/default.nix
This commit is contained in:
2025-10-08 16:27:45 +07:00
parent 4cda4d067a
commit 1e2f44f782
17 changed files with 271 additions and 72 deletions

View File

@@ -1,4 +1,11 @@
{ lib, buildPythonPackage, fetchFromGitHub, setuptools, wheel, django_4, }:
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
wheel,
django_4,
}:
buildPythonPackage rec {
pname = "django-slowtests";
@@ -12,7 +19,10 @@ buildPythonPackage rec {
hash = "sha256-gW9AZiMpXJp1m2X1cbm6GdZ9cH+TFqjNLQJFmsvGjB0=";
};
build-system = [ setuptools wheel ];
build-system = [
setuptools
wheel
];
dependencies = [ django_4 ];
@@ -21,8 +31,7 @@ buildPythonPackage rec {
meta = {
description = "Locate your slowest tests";
homepage = "https://github.com/realpython/django-slow-tests";
changelog =
"https://github.com/realpython/django-slow-tests/blob/${src.rev}/CHANGELOG.rst";
changelog = "https://github.com/realpython/django-slow-tests/blob/${src.rev}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
};