Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pybtex-docutils / default.nix
blobb2c05f73bc636e01d281a16701a2410c0f702577
1 { lib
2 , buildPythonPackage
3 , docutils
4 , fetchPypi
5 , pybtex
6 , pytestCheckHook
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "pybtex-docutils";
12   version = "1.0.3";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-On69+StZPgDowcU4qpogvKXZLYQjESRxWsyWTVHZPGs=";
20   };
22   buildInputs = [
23     docutils
24     pybtex
25   ];
27   nativeCheckInputs = [
28     pytestCheckHook
29   ];
31   pythonImportsCheck = [
32     "pybtex_docutils"
33   ];
35   meta = with lib; {
36     description = "A docutils backend for pybtex";
37     homepage = "https://github.com/mcmtroffaes/pybtex-docutils";
38     license = licenses.mit;
39   };