python3Packages.hid-parser: 0.0.3 -> 0.1.0

This commit was automatically generated using update-python-libraries.

Changed files
+12 -10
pkgs
development
python-modules
hid-parser
+12 -10
pkgs/development/python-modules/hid-parser/default.nix
···
{
lib,
buildPythonPackage,
-
fetchPypi,
-
setuptools,
-
pytest7CheckHook,
hypothesis,
}:
buildPythonPackage rec {
pname = "hid-parser";
-
version = "0.0.3";
-
format = "pyproject";
-
src = fetchPypi {
-
inherit pname version;
-
hash = "sha256-zbm+h+ieDmd1K0uH+9B8EWtYScxqYJXVpY9bXdBivA4=";
};
-
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [
-
pytest7CheckHook
hypothesis
];
···
{
lib,
buildPythonPackage,
+
fetchFromGitHub,
+
flit-core,
+
pytestCheckHook,
hypothesis,
}:
buildPythonPackage rec {
pname = "hid-parser";
+
version = "0.1.0";
+
pyproject = true;
+
src = fetchFromGitHub {
+
owner = "usb-tools";
+
repo = "python-hid-parser";
+
tag = version;
+
hash = "sha256-8aGyLTsBK5etwbqFkNinbLHCt20fsQEmuBvu3RrwCDA=";
};
+
build-system = [ flit-core ];
nativeCheckInputs = [
+
pytestCheckHook
hypothesis
];