42 lines
888 B
Nix
42 lines
888 B
Nix
{
|
|
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; [ ];
|
|
};
|
|
}
|