summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/procmon-parser/default.nix
blob: 12fc4fdc6ae74db39973ec2c7eb663e0ab8c6bd9 (plain)
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
{
  lib,
  buildPythonPackage,
  construct,
  fetchFromGitHub,
  pytestCheckHook,
  python-dateutil,
  six,
}:

buildPythonPackage rec {
  pname = "procmon-parser";
  version = "0.3.13";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "eronnen";
    repo = "procmon-parser";
    tag = "v${version}";
    hash = "sha256-XkMf3MQK4WFRLl60XHDG/j2gRHAiz7XL9MmC6SRg9RE=";
  };

  propagatedBuildInputs = [
    construct
    six
  ];

  nativeCheckInputs = [
    pytestCheckHook
    python-dateutil
  ];

  pythonImportsCheck = [ "procmon_parser" ];

  meta = {
    description = "Parser to process monitor file formats";
    homepage = "https://github.com/eronnen/procmon-parser/";
    changelog = "https://github.com/eronnen/procmon-parser/releases/tag/v${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}