python3Packages.braceexpand: init at 0.1.7
This commit is contained in:
parent
c4c85b5764
commit
ce036aad8e
2 changed files with 32 additions and 0 deletions
30
pkgs/development/python-modules/braceexpand/default.nix
Normal file
30
pkgs/development/python-modules/braceexpand/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue