Files
nixpkgs/pkgs/development/python-modules/constantly/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

60 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
# build-system
setuptools,
versioneer,
# tests
twisted,
}:
let
self = buildPythonPackage rec {
pname = "constantly";
version = "23.10.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "twisted";
repo = "constantly";
tag = version;
hash = "sha256-yXPHQP4B83PuRNvDBnRTx/MaPaQxCl1g5Xrle+N/d7I=";
};
nativeBuildInputs = [
setuptools
versioneer
]
++ versioneer.optional-dependencies.toml;
# would create dependency loop with twisted
doCheck = false;
nativeCheckInputs = [ twisted ];
checkPhase = ''
runHook preCheck
trial constantly
runHook postCheck
'';
pythonImportsCheck = [ "constantly" ];
passthru.tests.constantly = self.overridePythonAttrs { doCheck = true; };
meta = {
description = "Module for symbolic constant support";
homepage = "https://github.com/twisted/constantly";
license = lib.licenses.mit;
maintainers = [ ];
};
};
in
self