Trying to package for Nixpkgs #197
-
Hello,
Do you know why this could be happening? I'm hoping I made some stupid and obvious mistake. I'm happy to provide any additional information that may be helpful. Here is the Nix code I wrote so far, in case it helps.{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, sphinx
, beautifulsoup4
}:
buildPythonPackage rec {
pname = "furo";
version = "2021.07.05.beta38";
format = "flit";
disable = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "pradyunsg";
repo = "furo";
rev = version;
sha256 = "sha256-dyhxn/l5X4g6qYvXpR1riCbhAPVweXWRaDoxXAo+KFg=";
};
propagatedBuildInputs = [
sphinx
beautifulsoup4
];
pythonImportsCheck = [ "furo" ];
meta = with lib; {
description = "A clean customizable documentation theme for Sphinx";
homepage = "https://github.com/pradyunsg/furo";
license = licenses.mit;
maintainers = with maintainers; [ Luflosi ];
};
} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You seem to have not declared that Furo depends on Sphinx at runtime? |
Beta Was this translation helpful? Give feedback.
You seem to have not declared that Furo depends on Sphinx at runtime?