02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
31 lines
703 B
Nix
31 lines
703 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";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Zimmi48 ];
|
|
};
|
|
}
|