python310Packages.bracex: 2.2.1 -> 2.3.post1

This commit is contained in:
Sandro Jäckel 2022-06-01 19:56:59 +02:00
parent 06e6b81e98
commit 2fcff51cab
No known key found for this signature in database
GPG Key ID: B1763F8651144063

View File

@ -1,14 +1,26 @@
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
{ lib
, buildPythonPackage
, fetchPypi
, hatchling
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "bracex";
version = "2.2.1";
version = "2.3.post1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "1c8d1296e00ad9a91030ccb4c291f9e4dc7c054f12c707ba3c5ff3e9a81bcd21";
sha256 = "sha256-57I/yLLNBtPewGkrqr7LJJ3alOBqYXkB/wOmxW/XFpM=";
};
nativeBuildInputs = [
hatchling
];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "bracex" ];