9a58eb6fc6
- The package was not building due to an infinite recursion error in pytest - After looking how they the package owners test it I discover they use unittest module instead of pytest - Rewrite so it uses unittest
44 lines
872 B
Nix
44 lines
872 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, docutils
|
|
, python
|
|
, pygments
|
|
, setuptools
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyroma";
|
|
version = "3.2";
|
|
|
|
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 ];
|
|
};
|
|
}
|