python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / alectryon / default.nix
blob6f048b0412300d60d240b03a51f603bf5adb828e
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pygments,
6   dominate,
7   beautifulsoup4,
8   docutils,
9   sphinx,
12 buildPythonPackage rec {
13   pname = "alectryon";
14   version = "1.4.0";
15   format = "setuptools";
17   src = fetchPypi {
18     inherit pname version;
19     sha256 = "00cxzfifvgcf3d3s8lsj1yxcwyf3a1964p86fj7b42q8pa0b4r3i";
20   };
22   propagatedBuildInputs = [
23     pygments
24     dominate
25     beautifulsoup4
26     docutils
27     sphinx
28   ];
30   doCheck = false;
32   meta = with lib; {
33     homepage = "https://github.com/cpitclaudel/alectryon";
34     description = "Collection of tools for writing technical documents that mix Coq code and prose";
35     mainProgram = "alectryon";
36     license = licenses.mit;
37     maintainers = with maintainers; [ Zimmi48 ];
38   };