2 , buildPythonApplication
23 buildPythonApplication rec {
28 inherit pname version;
29 sha256 = "sha256-3fVo+B71SsJs+XF4+FWH2nz0ouTnpC/02fXYr1C9Jrk=";
32 # Relax requirements from "==" to ">="
33 # https://github.com/tabatkins/bikeshed/issues/2178
35 substituteInPlace requirements.txt \
39 propagatedBuildInputs = [
59 $out/bin/bikeshed test
62 pythonImportsCheck = [ "bikeshed" ];
65 description = "Preprocessor for anyone writing specifications that converts source files into actual specs";
67 Bikeshed is a pre-processor for spec documents, turning a source document
68 (containing only the actual spec content, plus several shorthands for linking
69 to terms and other things) into a final spec document, with appropriate boilerplate,
70 bibliography, indexes, etc all filled in. It's used on specs for CSS
71 and many other W3C working groups, WHATWG, the C++ standards committee, and elsewhere!
73 homepage = "https://tabatkins.github.io/bikeshed/";
74 license = licenses.cc0;