nixpkgs/pkgs/development/python-modules/sphinxcontrib-actdiag/default.nix
natsukium 4087ddd648
python311Packages.sphinxcontrib: add pythonNamespaces to remove nspkg.pth
This change fixes the import error reported in the following comment.
It is caused by the legacy setuptools namespace.
https://github.com/NixOS/nixpkgs/pull/210338#issuecomment-1447063024
2023-10-26 23:05:13 +09:00

41 lines
743 B
Nix

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