mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-23 12:34:15 +00:00
python311Packages.procmon-parser: init at 0.3.13
This commit is contained in:
parent
c9c99c053a
commit
c95bbfb817
46
pkgs/development/python-modules/procmon-parser/default.nix
Normal file
46
pkgs/development/python-modules/procmon-parser/default.nix
Normal file
@ -0,0 +1,46 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, construct
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
, python-dateutil
|
||||
, pythonOlder
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "procmon-parser";
|
||||
version = "0.3.13";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "eronnen";
|
||||
repo = "procmon-parser";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-XkMf3MQK4WFRLl60XHDG/j2gRHAiz7XL9MmC6SRg9RE=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
construct
|
||||
six
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
python-dateutil
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"procmon_parser"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
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 = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -8527,6 +8527,8 @@ self: super: with self; {
|
||||
|
||||
process-tests = callPackage ../development/python-modules/process-tests { };
|
||||
|
||||
procmon-parser = callPackage ../development/python-modules/procmon-parser { };
|
||||
|
||||
proglog = callPackage ../development/python-modules/proglog { };
|
||||
|
||||
progressbar2 = callPackage ../development/python-modules/progressbar2 { };
|
||||
|
Loading…
Reference in New Issue
Block a user