about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyroma/default.nix
blob: b9669e41d3b22996178be87c61eb476368015111 (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
44
{ lib
, buildPythonPackage
, fetchFromGitHub
, docutils
, python
, pygments
, setuptools
, requests
}:

buildPythonPackage rec {
  pname = "pyroma";
  version = "3.2";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "regebro";
    repo = pname;
    rev = version;
    sha256 = "0ln9w984n48nyxwzd1y48l6b18lnv52radcyizaw56lapcgxrzdr";
  };

  propagatedBuildInputs = [
    docutils
    pygments
    setuptools
    requests
  ];

  # https://github.com/regebro/pyroma/blob/3.2/Makefile#L23
  # PyPITest requires network access
  checkPhase = ''
    ${python.interpreter} -m unittest -k 'not PyPITest' pyroma.tests
  '';

  pythonImportsCheck = [ "pyroma" ];

  meta = with lib; {
    description = "Test your project's packaging friendliness";
    homepage = "https://github.com/regebro/pyroma";
    license = licenses.mit;
    maintainers = with maintainers; [ kamadorueda ];
  };
}