python3Packages.braceexpand: init at 0.1.7

This commit is contained in:
Alex Martens 2021-10-16 08:23:38 -07:00
parent c4c85b5764
commit ce036aad8e
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "braceexpand";
version = "0.1.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit version pname;
sha256 = "01gpcnksnqv6np28i4x8s3wkngawzgs99zvjfia57spa42ykkrg6";
};
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "braceexpand" ];
meta = with lib; {
description = "Bash-style brace expansion for Python";
homepage = "https://github.com/trendels/braceexpand";
changelog = "https://github.com/trendels/braceexpand/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ newam ];
};
}

View file

@ -1236,6 +1236,8 @@ in {
bpython = callPackage ../development/python-modules/bpython { };
braceexpand = callPackage ../development/python-modules/braceexpand { };
bracex = callPackage ../development/python-modules/bracex { };
braintree = callPackage ../development/python-modules/braintree { };