nixpkgs/pkgs/development/python-modules/eliot/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

65 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, aiocontextvars
, boltons
, hypothesis
, pyrsistent
, pytestCheckHook
, setuptools
, six
, testtools
, zope-interface
}:
buildPythonPackage rec {
pname = "eliot";
version = "1.14.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-wvCZo+jV7PwidFdm58xmSkjbZLa4nZht/ycEkdhoMUk=";
};
propagatedBuildInputs = [
aiocontextvars
boltons
pyrsistent
setuptools
six
zope-interface
];
nativeCheckInputs = [
hypothesis
pytestCheckHook
testtools
];
pythonImportsCheck = [
"eliot"
];
# Tests run eliot-prettyprint in out/bin.
preCheck = ''
export PATH=$out/bin:$PATH
'';
disabledTests = [
"test_parse_stream"
# AttributeError: module 'inspect' has no attribute 'getargspec'
"test_default"
];
meta = with lib; {
homepage = "https://eliot.readthedocs.io";
description = "Logging library that tells you why it happened";
mainProgram = "eliot-prettyprint";
license = licenses.asl20;
maintainers = with maintainers; [ dpausp ];
};
}