nixpkgs/pkgs/development/python-modules/alectryon/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

31 lines
734 B
Nix

{ lib, buildPythonPackage, fetchPypi
, pygments, dominate, beautifulsoup4, docutils, sphinx }:
buildPythonPackage rec {
pname = "alectryon";
version = "1.4.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "00cxzfifvgcf3d3s8lsj1yxcwyf3a1964p86fj7b42q8pa0b4r3i";
};
propagatedBuildInputs = [
pygments
dominate
beautifulsoup4
docutils
sphinx
];
doCheck = false;
meta = with lib; {
homepage = "https://github.com/cpitclaudel/alectryon";
description = "A collection of tools for writing technical documents that mix Coq code and prose";
mainProgram = "alectryon";
license = licenses.mit;
maintainers = with maintainers; [ Zimmi48 ];
};
}