about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/duecredit/default.nix
blob: 1e24f91129208cf8e4df5e50ee68d3b47320fd87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
, pytestCheckHook
, vcrpy
, citeproc-py
, requests
}:

buildPythonPackage rec {
  pname = "duecredit";
  version = "0.9.3";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-+DeOqQ0R+XUlkuSHySFj2oDZqf85mT64PAi/LtTso3I=";
  };

  nativeBuildInputs = [ setuptools ];
  propagatedBuildInputs = [ citeproc-py requests ];

  nativeCheckInputs = [ pytestCheckHook vcrpy ];
  disabledTests = [ "test_import_doi" ];  # tries to access network

  preCheck = ''
    export HOME=$(mktemp -d)
  '';

  pythonImportsCheck = [ "duecredit" ];

  meta = with lib; {
    homepage = "https://github.com/duecredit/duecredit";
    description = "Simple framework to embed references in code";
    changelog = "https://github.com/duecredit/duecredit/releases/tag/${version}";
    license = licenses.bsd2;
    maintainers = with maintainers; [ bcdarwin ];
  };
}