feat(python): django-cogwheels
This commit is contained in:
parent
21921f5652
commit
1bc56d06d3
1 changed files with 42 additions and 0 deletions
42
python-pkgs/django-cogwheels.nix
Normal file
42
python-pkgs/django-cogwheels.nix
Normal 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; [ ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue