1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-24 10:10:37 +03:00
nixpkgs/pkgs/development/python-modules/sphinxcontrib-asyncio/default.nix

33 lines
687 B
Nix
Raw Normal View History

2024-05-22 16:01:06 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
sphinx,
}:
buildPythonPackage rec {
pname = "sphinxcontrib-asyncio";
version = "0.3.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-mf0m4P5+34ckSnGpnDFv0Mm1CFbCUZrMqSfr50EAci4=";
};
2024-05-22 16:01:06 +02:00
propagatedBuildInputs = [ sphinx ];
doCheck = false; # no tests
2024-05-22 16:01:06 +02:00
pythonImportsCheck = [ "sphinxcontrib.asyncio" ];
pythonNamespaces = [ "sphinxcontrib" ];
meta = with lib; {
description = "Sphinx extension to add asyncio-specific markups";
homepage = "https://github.com/aio-libs/sphinxcontrib-asyncio";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}