pythonPackages.bracex: init at 2.1.1
This commit is contained in:
parent
a3b4d14288
commit
bd1307d6bd
22
pkgs/development/python-modules/bracex/default.nix
Normal file
22
pkgs/development/python-modules/bracex/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "bracex";
|
||||||
|
version = "2.1.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-AfcVzQ7XpiLsizIyLnFYE/dXTeUx8Jtw9vOywQ9oJCU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1068,6 +1068,8 @@ in {
|
|||||||
|
|
||||||
bpython = callPackage ../development/python-modules/bpython { };
|
bpython = callPackage ../development/python-modules/bpython { };
|
||||||
|
|
||||||
|
bracex = callPackage ../development/python-modules/bracex { };
|
||||||
|
|
||||||
braintree = callPackage ../development/python-modules/braintree { };
|
braintree = callPackage ../development/python-modules/braintree { };
|
||||||
|
|
||||||
branca = callPackage ../development/python-modules/branca { };
|
branca = callPackage ../development/python-modules/branca { };
|
||||||
|
Loading…
Reference in New Issue
Block a user