2021-03-07 16:55:27 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bracex";
|
2021-11-14 13:08:36 +01:00
|
|
|
version = "2.2.1";
|
2021-03-07 16:55:27 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-11-14 13:08:36 +01:00
|
|
|
sha256 = "1c8d1296e00ad9a91030ccb4c291f9e4dc7c054f12c707ba3c5ff3e9a81bcd21";
|
2021-03-07 16:55:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "bracex" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Bash style brace expansion for Python";
|
|
|
|
homepage = "https://github.com/facelessuser/bracex";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
|
|
};
|
|
|
|
}
|