mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
7bd65d54f7
While looking at the sphinx package I noticed it was heavily undermaintained, which is when we noticed nand0p has been inactive for roughly 18 months. It is therefore prudent to assume they will not be maintaining their packages, modules and tests. - Their last contribution to nixpkgs was in 2019/12 - On 2021/05/08 I wrote them an email to the address listed in the maintainer-list, which they didn't reply to.
27 lines
756 B
Nix
27 lines
756 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, pytest, pytest-shutil, pytest-fixture-config, psutil
|
|
, requests, future, retry }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-server-fixtures";
|
|
version = "1.7.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "07vdv3y89qzv89ws0y48h92yplqsx208b9cizx80w644dazb398g";
|
|
};
|
|
|
|
buildInputs = [ pytest ];
|
|
propagatedBuildInputs = [ pytest-shutil pytest-fixture-config psutil requests future retry ];
|
|
|
|
# RuntimeError: Unable to find a free server number to start Xvfb
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Extensible server fixures for py.test";
|
|
homepage = "https://github.com/manahl/pytest-plugins";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|