nixpkgs/pkgs/development/tools/pifpaf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
812 B
Nix
Raw Normal View History

2023-02-14 17:47:36 +00:00
{ lib
, python3
, fetchPypi
2023-02-14 17:47:36 +00:00
}:
python3.pkgs.buildPythonApplication rec {
pname = "pifpaf";
version = "3.1.5";
format = "setuptools";
src = fetchPypi {
2023-02-14 17:47:36 +00:00
inherit pname version;
sha256 = "sha256-lmixfUP+pq0RdyXeY6MmUQOx1sMLHqojOKUK1mivbaU=";
};
propagatedBuildInputs = with python3.pkgs; [
click
daiquiri
fixtures
jinja2
pbr
psutil
xattr
];
preCheck = ''
export PATH=$out/bin:$PATH
'';
nativeCheckInputs = with python3.pkgs; [
requests
testtools
2023-02-14 17:47:36 +00:00
];
pythonImportsCheck = [ "pifpaf" ];
meta = with lib; {
description = "Suite of tools and fixtures to manage daemons for testing";
mainProgram = "pifpaf";
2023-02-14 17:47:36 +00:00
homepage = "https://github.com/jd/pifpaf";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}