Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 22 lines 551 B view raw
1{ lib, buildPythonPackage, fetchPypi, pytestCheckHook }: 2 3buildPythonPackage rec { 4 pname = "bracex"; 5 version = "2.1.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "sha256-AfcVzQ7XpiLsizIyLnFYE/dXTeUx8Jtw9vOywQ9oJCU="; 10 }; 11 12 checkInputs = [ pytestCheckHook ]; 13 14 pythonImportsCheck = [ "bracex" ]; 15 16 meta = with lib; { 17 description = "Bash style brace expansion for Python"; 18 homepage = "https://github.com/facelessuser/bracex"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ SuperSandro2000 ]; 21 }; 22}