mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-25 05:23:54 +00:00
Merge pull request #306105 from r-ryantm/auto-update/python311Packages.crc
python311Packages.crc: 6.1.2 -> 7.0.0
This commit is contained in:
commit
29c2f01d9d
@ -1,14 +1,15 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, poetry-core
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
poetry-core,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "crc";
|
||||
version = "6.1.2";
|
||||
version = "7.0.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
@ -17,31 +18,23 @@ buildPythonPackage rec {
|
||||
owner = "Nicoretti";
|
||||
repo = "crc";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-d946yBMrOIgMXGOr2ej5bvn59D5iAGMese24qdv8l/Y=";
|
||||
hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
build-system = [ poetry-core ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"crc"
|
||||
];
|
||||
pythonImportsCheck = [ "crc" ];
|
||||
|
||||
disabledTestPaths = [
|
||||
"test/bench"
|
||||
];
|
||||
disabledTestPaths = [ "test/bench" ];
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}";
|
||||
description = "Python module for calculating and verifying predefined & custom CRC's";
|
||||
mainProgram = "crc";
|
||||
homepage = "https://nicoretti.github.io/crc/";
|
||||
changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ jleightcap ];
|
||||
mainProgram = "crc";
|
||||
};
|
||||
}
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zha";
|
||||
version = "0.0.5";
|
||||
version = "0.0.8";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.12";
|
||||
@ -35,7 +35,7 @@ buildPythonPackage rec {
|
||||
owner = "zigpy";
|
||||
repo = "zha";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-47dlWMzY1vPmHIDCy8a0xzk2G+OPq6vEK5OpP1c8vw4=";
|
||||
hash = "sha256-xOaqwgL8NqB3pHNa6U/wextntI5aMivHLaIhSRqvgRU=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
@ -49,8 +49,6 @@ buildPythonPackage rec {
|
||||
"zha-quirks"
|
||||
];
|
||||
|
||||
|
||||
|
||||
nativeBuildInputs = [
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
@ -94,6 +92,7 @@ buildPythonPackage rec {
|
||||
"test_check_available_unsuccessful"
|
||||
"test_device_counter_sensors"
|
||||
"test_device_tracker"
|
||||
"test_device_unavailable_skips_entity_polling"
|
||||
"test_elec_measurement_sensor_polling"
|
||||
"test_electrical_measurement_init"
|
||||
"test_group_member_assume_state"
|
||||
|
Loading…
Reference in New Issue
Block a user