feat(python): django-cogwheels

This commit is contained in:
catvayor 2024-12-10 15:12:07 +01:00
parent 21921f5652
commit 1bc56d06d3
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

View file

@ -0,0 +1,42 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
wheel,
django,
}:
buildPythonPackage rec {
pname = "django-cogwheels";
version = "0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "ababic";
repo = "django-cogwheels";
rev = "7a5f423498854dbec936b06bbaf88f7106259144";
hash = "sha256-TMsArU5jj6c7iQmqpG0MMoGkyoxPv/TxSNrMA6+ISjI=";
};
build-system = [
setuptools
wheel
];
dependencies = [
django
];
pythonImportsCheck = [
"cogwheels"
];
meta = {
description = "Rock solid app-specific settings management for your Django package, framework or reusable app";
homepage = "https://github.com/ababic/django-cogwheels.git";
changelog = "https://github.com/ababic/django-cogwheels/blob/${src.rev}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
};
}