My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sphinxcontrib-seqdiag/default.nix

38 lines
700 B

{ lib
, blockdiag
, buildPythonPackage
, fetchPypi
, pythonOlder
, seqdiag
, sphinx
}:
buildPythonPackage rec {
pname = "sphinxcontrib-seqdiag";
version = "3.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-QH5IeXZz9x2Ujp/6BHFsrB2ZqeyPYW3jdk1C0DNBZXQ=";
};
propagatedBuildInputs = [
blockdiag
seqdiag
sphinx
];
pythonImportsCheck = [
"sphinxcontrib.seqdiag"
];
meta = with lib; {
description = "Sphinx seqdiag extension";
homepage = "https://github.com/blockdiag/sphinxcontrib-seqdiag";
license = licenses.bsd2;
maintainers = with maintainers; [ davidtwco ];
};
}