depot/third_party/nixpkgs/pkgs/development/python-modules/constantly/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

58 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";
rev = "refs/tags/${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 = with lib; {
description = "Module for symbolic constant support";
homepage = "https://github.com/twisted/constantly";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
};
in
self