blob: 9aa40872cbff99ed8888f33dcd3c0c7473fbe620 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "bracex";
version = "2.6";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-mPE0fNd+Iu6NlnowrU4xCyM/d1Tb8x/z/Ot2FFukfcc=";
};
nativeBuildInputs = [ hatchling ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "bracex" ];
meta = {
description = "Bash style brace expansion for Python";
homepage = "https://github.com/facelessuser/bracex";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|